mirror of
https://github.com/minetest/irrlicht.git
synced 2025-07-08 11:10:33 +02:00
bin
doc
examples
include
lib
media
scripts
source
tests
empty
media
2dmaterial.cpp
Makefile
anti-aliasing.cpp
archiveReader.cpp
b3dAnimation.cpp
billboards.cpp
burningsVideo.cpp
collisionResponseAnimator.cpp
color.cpp
coreutil.cpp
createImage.cpp
cursorSetVisible.cpp
disambiguateTextures.cpp
draw2DImage.cpp
drawPixel.cpp
drawRectOutline.cpp
drawVertexPrimitive.cpp
enumerateImageManipulators.cpp
exports.cpp
fast_atof.cpp
filesystem.cpp
flyCircleAnimator.cpp
guiDisabledMenu.cpp
ioScene.cpp
irrArray.cpp
irrCoreEquals.cpp
irrList.cpp
irrMap.cpp
irrString.cpp
lightMaps.cpp
lights.cpp
line2d.cpp
loadTextures.cpp
main.cpp
makeColorKeyTexture.cpp
material.cpp
matrixOps.cpp
md2Animation.cpp
meshLoaders.cpp
meshTransform.cpp
mrt.cpp
orthoCam.cpp
planeMatrix.cpp
projectionMatrix.cpp
removeCustomAnimator.cpp
renderTargetTexture.cpp
sceneCollisionManager.cpp
sceneNodeAnimator.cpp
screenshot.cpp
serializeAttributes.cpp
skinnedMesh.cpp
softwareDevice.cpp
stencilshadow.cpp
terrainSceneNode.cpp
testDimension2d.cpp
testGeometryCreator.cpp
testLine2d.cpp
testQuaternion.cpp
testS3DVertex.cpp
testUtils.cpp
testUtils.h
testVector2d.cpp
testVector3d.cpp
testXML.cpp
testaabbox.cpp
tests-last-passed-at.txt
tests-readme.txt
tests.cbp
tests.workspace
tests_vc10.sln
tests_vc10.vcxproj
tests_vc11.sln
tests_vc11.vcxproj
tests_vc12.sln
tests_vc12.vcxproj
tests_vc14.sln
tests_vc14.vcxproj
tests_vc16.sln
tests_vc16.vcxproj
textureFeatures.cpp
textureRenderStates.cpp
timer.cpp
transparentMaterials.cpp
triangle3d.cpp
triangleSelector.cpp
userClipPlane.cpp
vectorPositionDimension2d.cpp
videoDriver.cpp
viewPort.cpp
writeImageToFile.cpp
tools
changes.txt
readme.txt
Previously search functions only worked when called with the same type as the array elements had. Which forced users sometimes to create dummy objects to be able to search for elements by another type. linear_search and linear_reverse_search now work with any type for which <T>::operator== is implemented. Similar binary_search now works when <T>::operator< is implemented in both directions (T < E and E < T). Note: It might be possible to further improve binary_search so only one operator< is needed (I think STL managed that somehow). So if someone likes a challenge - have a go at it! :-) git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6398 dfc29bdd-3216-0410-991c-e03cc46cb475