irrlicht/include
engineer_apple 2340f9b849 Changes in 1.6 TA
- PixelBlend16 and PixelBlend16_simd are working for the new rules.
	- bugfix. CLightSceneNode didn't correctly update it's attributes
	
		Lighting Linear Attenuation.	= 1.f / radius
		
		The Example loadirr files set the lightscene radius to 1000.f but
		stays on the previous default attentuation with the older radius 100 -> 1.f / 100
		so the examples looks golden-brown.
		
		Now the radius is correctly!! set to the attenuation of 1.f/1000.f because the
		file doesn't have special attenuation. and now it looks more yellow.
		can anybody show me a correct screenshot for this file;-)? Niko?
		
		Or is this behavior the default lighting?. then it would be
		a fixed constant linear attenuation of 0.01f;-). Please clearify
		For now i didn't fixed it
		
		
		I encountered this behavior because i ( burning video ) used the original radius
		for calculations and so i've found that radius != 1.f / linearAttenuation but
		in the LightSceneNode this formula was used.. confused;-)
		

	- vector template and equals tests
		as working with the test suits i cleaned the template behavior (mixed types are
		used in the templates) and added all missing special math function with their coressponding type
		I also set the equal test for s32 to behave like the f32 routine.

		The function equals always implements a weak test.		
		that means a tolerance MUST always be used if you use the equal function. default is 1.
		you can set it to zero a==b-> equals ( a, b, 0 ) but do it explicit like you have to
		for floating compare. This is important when irrlicht is going to use special hardware
		math acceleration on a per function base, like sse2, or the other way round fixpoint.
	
	- VideoDriver drawPixel
		The HW renderes are using the alpha components for blending.
		The Software Renderes and image loaders are using CImage::setPixel copy. 
		so setPixel is engaged to either blends or copy the pixel
		default: false
	- Burningvideo
		added RenderMaterial EMT_SPHERE_MAP
			pushed burningsvideo to 0.43
		added RenderMaterial EMT_REFLECTION_2_LAYER
			pushed burningsvideo to 0.44
		set	EMT_TRANSPARENT_ALPHA_CHANNEL_REF
			to use AlphaRef 0.5 like Direct3D
			
		One Note: in OpenGL there is know difference between sphere_map and reflection layer
		both using GL_TEXTURE_GEN_MODE GL_SPHERE_MAP, whereas in d3d one time using camera_normal
		on sphere and reflection on refletcion_layer.
		
		The visual difference is that on sphere map the "image is not moving" when you rotate the 
		viewer. For Buring i took the opengl visual. always moving
				

	- rename quake3 SEntity to IEntity to be confom with IShader
		even IShader and IEntity are none pure virtual interfaces
		like most irrlicht objects


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2207 dfc29bdd-3216-0410-991c-e03cc46cb475
2009-02-10 15:08:23 +00:00
..
CDynamicMeshBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
CIndexBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
CMeshBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
CVertexBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ECullingTypes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EDebugSceneTypes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EDriverFeatures.h ColorMask support. Allows for selective disabling of color planes upon rendering. 2009-01-23 00:35:46 +00:00
EDriverTypes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EGUIAlignment.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EGUIElementTypes.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
EHardwareBufferFlags.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EMaterialFlags.h Make material flag enum combinable. 2009-02-03 23:42:26 +00:00
EMaterialTypes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EMeshWriterEnums.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
EMessageBoxFlags.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ESceneNodeAnimatorTypes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ESceneNodeTypes.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
ETerrainElements.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IAnimatedMesh.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IAnimatedMeshMD2.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IAnimatedMeshMD3.h Fix some project issues. 2009-01-27 22:26:38 +00:00
IAnimatedMeshSceneNode.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IAttributeExchangingObject.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IAttributes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IBillboardSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IBillboardTextSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IBoneSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ICameraSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ICursorControl.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IDummyTransformationSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IDynamicMeshBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IEventReceiver.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IFileArchive.h Changes in version 1.6, TA 2009-01-27 15:57:07 +00:00
IFileList.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IFileSystem.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
IGPUProgrammingServices.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IGUIButton.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUICheckBox.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIColorSelectDialog.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIComboBox.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IGUIContextMenu.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
IGUIEditBox.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
IGUIElement.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IGUIElementFactory.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIEnvironment.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IGUIFileOpenDialog.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IGUIFont.h Fix some docs. 2009-01-27 23:08:06 +00:00
IGUIFontBitmap.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIImage.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIImageList.h Changes in version 1.6, TA 2009-01-27 15:57:07 +00:00
IGUIInOutFader.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
IGUIListBox.h Changes in version 1.6, TA 2009-01-27 15:57:07 +00:00
IGUIMeshViewer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIScrollBar.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IGUISkin.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
IGUISpinBox.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUISpriteBank.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUIStaticText.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
IGUITabControl.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
IGUITable.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
IGUIToolbar.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IGUITreeView.h Changes in version 1.6, TA 2009-01-27 15:57:07 +00:00
IGUIWindow.h Fix some docs. 2009-01-27 23:08:06 +00:00
IGeometryCreator.h Add missing IGeometryCreator.h file. It's missing comments (which I'll add tonight) along with tests/testGeometryCreate.cpp. 2009-02-10 13:40:13 +00:00
IImage.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00
IImageLoader.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IImageWriter.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IIndexBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ILightManager.h Add example 20 to C::B and VC7/VC9 projects. Fix some build issues with the light manager and example. 2009-01-12 11:52:50 +00:00
ILightSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ILogger.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IMaterialRenderer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IMaterialRendererServices.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IMesh.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IMeshBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IMeshCache.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IMeshLoader.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IMeshManipulator.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00
IMeshSceneNode.h http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=32019 2009-01-31 15:58:43 +00:00
IMeshWriter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IMetaTriangleSelector.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IOSOperator.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleAffector.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IParticleAnimatedMeshSceneNodeEmitter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleAttractionAffector.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleBoxEmitter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleCylinderEmitter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleEmitter.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IParticleFadeOutAffector.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleGravityAffector.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleMeshEmitter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleRingEmitter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleRotationAffector.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleSphereEmitter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IParticleSystemSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IQ3LevelMesh.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
IQ3Shader.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00
IReadFile.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IReferenceCounted.h http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?p=183704 2009-01-19 13:48:22 +00:00
ISceneCollisionManager.h https://sourceforge.net/tracker2/?func=detail&aid=1797487&group_id=74339&atid=540678 2009-02-01 18:56:05 +00:00
ISceneManager.h http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=32277 2009-02-09 20:05:53 +00:00
ISceneNode.h Avoid self-assignment causing wrong drop, found by CuteAlien. 2009-02-02 10:07:41 +00:00
ISceneNodeAnimator.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ISceneNodeAnimatorCameraFPS.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ISceneNodeAnimatorCameraMaya.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ISceneNodeAnimatorCollisionResponse.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
ISceneNodeAnimatorFactory.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ISceneNodeFactory.h Merged from 1.5 branch to trunk, all changes from 2088 to 2120. Mainly doc updates. Fix for non-skinned animated meshes with different current frames. 2009-01-22 12:40:06 +00:00
ISceneUserDataSerializer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IShaderConstantSetCallBack.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IShadowVolumeSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ISkinnedMesh.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ITerrainSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ITextSceneNode.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ITexture.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
ITimer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
ITriangleSelector.h https://sourceforge.net/tracker2/index.php?func=detail&aid=2498791&group_id=74339&atid=540678 2009-01-22 15:50:06 +00:00
IVertexBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IVideoDriver.h Global override material. Set and enable Material flags which will override materials of each scene node in the enabled render passes. 2009-02-04 00:22:49 +00:00
IVideoModeList.h http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?p=183704 2009-01-19 13:48:22 +00:00
IVolumeLightSceneNode.h http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=32182 2009-01-31 22:45:46 +00:00
IWriteFile.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
IXMLReader.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IXMLWriter.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
IrrCompileConfig.h xbox update. 2009-01-28 14:52:13 +00:00
IrrlichtDevice.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
Keycodes.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
S3DVertex.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SAnimatedMesh.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SColor.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SExposedVideoData.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SIrrCreationParameters.h Added support for Stereo framebuffers and AUX buffers (which are currently only accessible via direct OpenGL calls or shaders). 2009-01-20 09:00:08 +00:00
SKeyMap.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
SLight.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SMaterial.h Fix warnings/errors from latest updates. 2009-02-05 17:37:45 +00:00
SMaterialLayer.h Add Mipmap LOD Bias to texture layers. 2009-01-23 17:08:39 +00:00
SMesh.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SMeshBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SMeshBufferLightMap.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SMeshBufferTangents.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SParticle.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SSharedMeshBuffer.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
SSkinMeshBuffer.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SVertexIndex.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
SViewFrustum.h Fix warnings/errors from latest updates. 2009-02-05 17:37:45 +00:00
SceneParameters.h New scene parameter to ignore b3d file mipmap flag. In case your b3d files load textures without mipmaps unintentionally you should set this flag to true. 2009-01-23 22:43:09 +00:00
aabbox3d.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
coreutil.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
dimension2d.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
fast_atof.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
heapsort.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
irrAllocator.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
irrArray.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
irrList.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
irrMap.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
irrMath.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00
irrString.h Fix some warnings and a template problem with gcc 4.x 2009-01-28 16:07:59 +00:00
irrTypes.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
irrXML.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
irrlicht.h Fix some warnings under Linux. 2009-01-27 17:45:16 +00:00
line2d.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
line3d.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
matrix4.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00
plane3d.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00
position2d.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
quaternion.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
rect.h Changes in version 1.6, TA 2009-01-27 15:53:53 +00:00
triangle3d.h Merged from 1.5 branch to trunk, all changes from 2042 to 2071. cursor setVisible fix, OSX FPS cam fix, ALPHA_CHANNEL_REF fix, new method draw2dRectOutline, setOverrideFont fixes, getCollisisonPoint distance bug fix. 2009-01-14 12:37:51 +00:00
vector2d.h Changes in 1.6 TA 2009-02-05 15:33:55 +00:00
vector3d.h Changes in 1.6 TA 2009-02-10 15:08:23 +00:00