]> git.lizzy.rs Git - irrlicht.git/blob - include/IVideoDriver.h
Resolve conflicts with master
[irrlicht.git] / include / IVideoDriver.h
1 // Copyright (C) 2002-2012 Nikolaus Gebhardt\r
2 // This file is part of the "Irrlicht Engine".\r
3 // For conditions of distribution and use, see copyright notice in irrlicht.h\r
4 \r
5 #ifndef __IRR_I_VIDEO_DRIVER_H_INCLUDED__\r
6 #define __IRR_I_VIDEO_DRIVER_H_INCLUDED__\r
7 \r
8 #include "rect.h"\r
9 #include "SColor.h"\r
10 #include "ITexture.h"\r
11 #include "irrArray.h"\r
12 #include "matrix4.h"\r
13 #include "plane3d.h"\r
14 #include "dimension2d.h"\r
15 #include "position2d.h"\r
16 #include "IMeshBuffer.h"\r
17 #include "triangle3d.h"\r
18 #include "EDriverTypes.h"\r
19 #include "EDriverFeatures.h"\r
20 #include "SExposedVideoData.h"\r
21 #include "SOverrideMaterial.h"\r
22 \r
23 namespace irr\r
24 {\r
25 namespace io\r
26 {\r
27         class IAttributes;\r
28         class IReadFile;\r
29         class IWriteFile;\r
30 } // end namespace io\r
31 namespace scene\r
32 {\r
33         class IMeshBuffer;\r
34         class IMesh;\r
35         class IMeshManipulator;\r
36         class ISceneNode;\r
37 } // end namespace scene\r
38 \r
39 namespace video\r
40 {\r
41         struct S3DVertex;\r
42         struct S3DVertex2TCoords;\r
43         struct S3DVertexTangents;\r
44         class IImageLoader;\r
45         class IImageWriter;\r
46         class IMaterialRenderer;\r
47         class IGPUProgrammingServices;\r
48         class IRenderTarget;\r
49 \r
50         //! enumeration for geometry transformation states\r
51         enum E_TRANSFORMATION_STATE\r
52         {\r
53                 //! View transformation\r
54                 ETS_VIEW = 0,\r
55                 //! World transformation\r
56                 ETS_WORLD,\r
57                 //! Projection transformation\r
58                 ETS_PROJECTION,\r
59                 //! Texture 0 transformation\r
60                 //! Use E_TRANSFORMATION_STATE(ETS_TEXTURE_0 + texture_number) to access other texture transformations\r
61                 ETS_TEXTURE_0,\r
62                 //! Only used internally\r
63                 ETS_COUNT = ETS_TEXTURE_0 + MATERIAL_MAX_TEXTURES\r
64         };\r
65 \r
66         //! Special render targets, which usually map to dedicated hardware\r
67         /** These render targets (besides 0 and 1) need not be supported by gfx cards */\r
68         enum E_RENDER_TARGET\r
69         {\r
70                 //! Render target is the main color frame buffer\r
71                 ERT_FRAME_BUFFER=0,\r
72                 //! Render target is a render texture\r
73                 ERT_RENDER_TEXTURE,\r
74                 //! Multi-Render target textures\r
75                 ERT_MULTI_RENDER_TEXTURES,\r
76                 //! Render target is the main color frame buffer\r
77                 ERT_STEREO_LEFT_BUFFER,\r
78                 //! Render target is the right color buffer (left is the main buffer)\r
79                 ERT_STEREO_RIGHT_BUFFER,\r
80                 //! Render to both stereo buffers at once\r
81                 ERT_STEREO_BOTH_BUFFERS,\r
82                 //! Auxiliary buffer 0\r
83                 ERT_AUX_BUFFER0,\r
84                 //! Auxiliary buffer 1\r
85                 ERT_AUX_BUFFER1,\r
86                 //! Auxiliary buffer 2\r
87                 ERT_AUX_BUFFER2,\r
88                 //! Auxiliary buffer 3\r
89                 ERT_AUX_BUFFER3,\r
90                 //! Auxiliary buffer 4\r
91                 ERT_AUX_BUFFER4\r
92         };\r
93 \r
94         //! Enum for the flags of clear buffer\r
95         enum E_CLEAR_BUFFER_FLAG\r
96         {\r
97                 ECBF_NONE = 0,\r
98                 ECBF_COLOR = 1,\r
99                 ECBF_DEPTH = 2,\r
100                 ECBF_STENCIL = 4,\r
101                 ECBF_ALL = ECBF_COLOR|ECBF_DEPTH|ECBF_STENCIL\r
102         };\r
103 \r
104         //! Enum for the types of fog distributions to choose from\r
105         enum E_FOG_TYPE\r
106         {\r
107                 EFT_FOG_EXP=0,\r
108                 EFT_FOG_LINEAR,\r
109                 EFT_FOG_EXP2\r
110         };\r
111 \r
112         const c8* const FogTypeNames[] =\r
113         {\r
114                 "FogExp",\r
115                 "FogLinear",\r
116                 "FogExp2",\r
117                 0\r
118         };\r
119 \r
120         //! Interface to driver which is able to perform 2d and 3d graphics functions.\r
121         /** This interface is one of the most important interfaces of\r
122         the Irrlicht Engine: All rendering and texture manipulation is done with\r
123         this interface. You are able to use the Irrlicht Engine by only\r
124         invoking methods of this interface if you like to, although the\r
125         irr::scene::ISceneManager interface provides a lot of powerful classes\r
126         and methods to make the programmer's life easier.\r
127         */\r
128         class IVideoDriver : public virtual IReferenceCounted\r
129         {\r
130         public:\r
131 \r
132                 //! Applications must call this method before performing any rendering.\r
133                 /** This method can clear the back- and the z-buffer.\r
134                 \param clearFlag A combination of the E_CLEAR_BUFFER_FLAG bit-flags.\r
135                 \param clearColor The clear color for the color buffer.\r
136                 \param clearDepth The clear value for the depth buffer.\r
137                 \param clearStencil The clear value for the stencil buffer.\r
138                 \param videoData Handle of another window, if you want the\r
139                 bitmap to be displayed on another window. If this is an empty\r
140                 element, everything will be displayed in the default window.\r
141                 Note: This feature is not fully implemented for all devices.\r
142                 \param sourceRect Pointer to a rectangle defining the source\r
143                 rectangle of the area to be presented. Set to null to present\r
144                 everything. Note: not implemented in all devices.\r
145                 \return False if failed. */\r
146                 virtual bool beginScene(u16 clearFlag=(u16)(ECBF_COLOR|ECBF_DEPTH), SColor clearColor = SColor(255,0,0,0), f32 clearDepth = 1.f, u8 clearStencil = 0,\r
147                         const SExposedVideoData& videoData=SExposedVideoData(), core::rect<s32>* sourceRect = 0) = 0;\r
148 \r
149                 //! Alternative beginScene implementation. Can't clear stencil buffer, but otherwise identical to other beginScene\r
150                 bool beginScene(bool backBuffer, bool zBuffer, SColor color = SColor(255,0,0,0),\r
151                         const SExposedVideoData& videoData = SExposedVideoData(), core::rect<s32>* sourceRect = 0)\r
152                 {\r
153                         u16 flag = 0;\r
154 \r
155                         if (backBuffer)\r
156                                 flag |= ECBF_COLOR;\r
157 \r
158                         if (zBuffer)\r
159                                 flag |= ECBF_DEPTH;\r
160 \r
161                         return beginScene(flag, color, 1.f, 0, videoData, sourceRect);\r
162                 }\r
163 \r
164                 //! Presents the rendered image to the screen.\r
165                 /** Applications must call this method after performing any\r
166                 rendering.\r
167                 \return False if failed and true if succeeded. */\r
168                 virtual bool endScene() = 0;\r
169 \r
170                 //! Queries the features of the driver.\r
171                 /** Returns true if a feature is available\r
172                 \param feature Feature to query.\r
173                 \return True if the feature is available, false if not. */\r
174                 virtual bool queryFeature(E_VIDEO_DRIVER_FEATURE feature) const =0;\r
175 \r
176                 //! Disable a feature of the driver.\r
177                 /** Can also be used to enable the features again. It is not\r
178                 possible to enable unsupported features this way, though.\r
179                 \param feature Feature to disable.\r
180                 \param flag When true the feature is disabled, otherwise it is enabled. */\r
181                 virtual void disableFeature(E_VIDEO_DRIVER_FEATURE feature, bool flag=true) =0;\r
182 \r
183                 //! Get attributes of the actual video driver\r
184                 /** The following names can be queried for the given types:\r
185                 MaxTextures (int) The maximum number of simultaneous textures supported by the driver. This can be less than the supported number of textures of the driver. Use _IRR_MATERIAL_MAX_TEXTURES_ to adapt the number.\r
186                 MaxSupportedTextures (int) The maximum number of simultaneous textures supported by the fixed function pipeline of the (hw) driver. The actual supported number of textures supported by the engine can be lower.\r
187                 MaxLights (int) Number of hardware lights supported in the fixed function pipeline of the driver, typically 6-8. Use light manager or deferred shading for more.\r
188                 MaxAnisotropy (int) Number of anisotropy levels supported for filtering. At least 1, max is typically at 16 or 32.\r
189                 MaxUserClipPlanes (int) Number of additional clip planes, which can be set by the user via dedicated driver methods.\r
190                 MaxAuxBuffers (int) Special render buffers, which are currently not really usable inside Irrlicht. Only supported by OpenGL\r
191                 MaxMultipleRenderTargets (int) Number of render targets which can be bound simultaneously. Rendering to MRTs is done via shaders.\r
192                 MaxIndices (int) Number of indices which can be used in one render call (i.e. one mesh buffer).\r
193                 MaxTextureSize (int) Dimension that a texture may have, both in width and height.\r
194                 MaxGeometryVerticesOut (int) Number of vertices the geometry shader can output in one pass. Only OpenGL so far.\r
195                 MaxTextureLODBias (float) Maximum value for LOD bias. Is usually at around 16, but can be lower on some systems.\r
196                 Version (int) Version of the driver. Should be Major*100+Minor\r
197                 ShaderLanguageVersion (int) Version of the high level shader language. Should be Major*100+Minor.\r
198                 AntiAlias (int) Number of Samples the driver uses for each pixel. 0 and 1 means anti aliasing is off, typical values are 2,4,8,16,32\r
199                 */\r
200                 virtual const io::IAttributes& getDriverAttributes() const=0;\r
201 \r
202                 //! Check if the driver was recently reset.\r
203                 /** For d3d devices you will need to recreate the RTTs if the\r
204                 driver was reset. Should be queried right after beginScene().\r
205                 */\r
206                 virtual bool checkDriverReset() =0;\r
207 \r
208                 //! Sets transformation matrices.\r
209                 /** \param state Transformation type to be set, e.g. view,\r
210                 world, or projection.\r
211                 \param mat Matrix describing the transformation. */\r
212                 virtual void setTransform(E_TRANSFORMATION_STATE state, const core::matrix4& mat) =0;\r
213 \r
214                 //! Returns the transformation set by setTransform\r
215                 /** \param state Transformation type to query\r
216                 \return Matrix describing the transformation. */\r
217                 virtual const core::matrix4& getTransform(E_TRANSFORMATION_STATE state) const =0;\r
218 \r
219                 //! Retrieve the number of image loaders\r
220                 /** \return Number of image loaders */\r
221                 virtual u32 getImageLoaderCount() const = 0;\r
222 \r
223                 //! Retrieve the given image loader\r
224                 /** \param n The index of the loader to retrieve. This parameter is an 0-based\r
225                 array index.\r
226                 \return A pointer to the specified loader, 0 if the index is incorrect. */\r
227                 virtual IImageLoader* getImageLoader(u32 n) = 0;\r
228 \r
229                 //! Retrieve the number of image writers\r
230                 /** \return Number of image writers */\r
231                 virtual u32 getImageWriterCount() const = 0;\r
232 \r
233                 //! Retrieve the given image writer\r
234                 /** \param n The index of the writer to retrieve. This parameter is an 0-based\r
235                 array index.\r
236                 \return A pointer to the specified writer, 0 if the index is incorrect. */\r
237                 virtual IImageWriter* getImageWriter(u32 n) = 0;\r
238 \r
239                 //! Sets a material.\r
240                 /** All 3d drawing functions will draw geometry using this material thereafter.\r
241                 \param material: Material to be used from now on. */\r
242                 virtual void setMaterial(const SMaterial& material) =0;\r
243 \r
244                 //! Get access to a named texture.\r
245                 /** Loads the texture from disk if it is not\r
246                 already loaded and generates mipmap levels if desired.\r
247                 Texture loading can be influenced using the\r
248                 setTextureCreationFlag() method. The texture can be in several\r
249                 imageformats, such as BMP, JPG, TGA, PCX, PNG, and PSD.\r
250                 \param filename Filename of the texture to be loaded.\r
251                 \return Pointer to the texture, or 0 if the texture\r
252                 could not be loaded. This pointer should not be dropped. See\r
253                 IReferenceCounted::drop() for more information. */\r
254                 virtual ITexture* getTexture(const io::path& filename) = 0;\r
255 \r
256                 //! Get access to a named texture.\r
257                 /** Loads the texture from disk if it is not\r
258                 already loaded and generates mipmap levels if desired.\r
259                 Texture loading can be influenced using the\r
260                 setTextureCreationFlag() method. The texture can be in several\r
261                 imageformats, such as BMP, JPG, TGA, PCX, PNG, and PSD.\r
262                 \param file Pointer to an already opened file.\r
263                 \return Pointer to the texture, or 0 if the texture\r
264                 could not be loaded. This pointer should not be dropped. See\r
265                 IReferenceCounted::drop() for more information. */\r
266                 virtual ITexture* getTexture(io::IReadFile* file) =0;\r
267 \r
268                 //! Returns a texture by index\r
269                 /** \param index: Index of the texture, must be smaller than\r
270                 getTextureCount() Please note that this index might change when\r
271                 adding or removing textures\r
272                 \return Pointer to the texture, or 0 if the texture was not\r
273                 set or index is out of bounds. This pointer should not be\r
274                 dropped. See IReferenceCounted::drop() for more information. */\r
275                 virtual ITexture* getTextureByIndex(u32 index) =0;\r
276 \r
277                 //! Returns amount of textures currently loaded\r
278                 /** \return Amount of textures currently loaded */\r
279                 virtual u32 getTextureCount() const = 0;\r
280 \r
281                 //! Renames a texture\r
282                 /** \param texture Pointer to the texture to rename.\r
283                 \param newName New name for the texture. This should be a unique name. */\r
284                 virtual void renameTexture(ITexture* texture, const io::path& newName) = 0;\r
285 \r
286                 //! Creates an empty texture of specified size.\r
287                 /** \param size: Size of the texture.\r
288                 \param name A name for the texture. Later calls to\r
289                 getTexture() with this name will return this texture.\r
290                 The name can _not_ be empty.\r
291                 \param format Desired color format of the texture. Please note\r
292                 that the driver may choose to create the texture in another\r
293                 color format.\r
294                 \return Pointer to the newly created texture. This pointer\r
295                 should not be dropped. See IReferenceCounted::drop() for more\r
296                 information. */\r
297                 virtual ITexture* addTexture(const core::dimension2d<u32>& size,\r
298                         const io::path& name, ECOLOR_FORMAT format = ECF_A8R8G8B8) = 0;\r
299 \r
300                 //! Creates a texture from an IImage.\r
301                 /** \param name A name for the texture. Later calls of\r
302                 getTexture() with this name will return this texture.\r
303                 The name can _not_ be empty.\r
304                 \param image Image the texture is created from.\r
305                 \param mipmapData Optional pointer to a mipmaps data.\r
306                 If this parameter is not given, the mipmaps are derived from image.\r
307                 \return Pointer to the newly created texture. This pointer\r
308                 should not be dropped. See IReferenceCounted::drop() for more\r
309                 information. */\r
310                 _IRR_DEPRECATED_ ITexture* addTexture(const io::path& name, IImage* image, void* mipmapData)\r
311                 {\r
312                         if (image)\r
313                                 image->setMipMapsData(mipmapData, false);\r
314 \r
315                         return addTexture(name, image);\r
316                 }\r
317 \r
318                 //! Creates a texture from an IImage.\r
319                 /** \param name A name for the texture. Later calls of\r
320                 getTexture() with this name will return this texture.\r
321                 The name can _not_ be empty.\r
322                 \param image Image the texture is created from.\r
323                 \return Pointer to the newly created texture. This pointer\r
324                 should not be dropped. See IReferenceCounted::drop() for more\r
325                 information. */\r
326                 virtual ITexture* addTexture(const io::path& name, IImage* image) = 0;\r
327 \r
328                 //! Creates a cubemap texture from loaded IImages.\r
329                 /** \param name A name for the texture. Later calls of getTexture() with this name will return this texture.\r
330                 The name can _not_ be empty.\r
331                 \param imagePosX Image (positive X) the texture is created from.\r
332                 \param imageNegX Image (negative X) the texture is created from.\r
333                 \param imagePosY Image (positive Y) the texture is created from.\r
334                 \param imageNegY Image (negative Y) the texture is created from.\r
335                 \param imagePosZ Image (positive Z) the texture is created from.\r
336                 \param imageNegZ Image (negative Z) the texture is created from.\r
337                 \return Pointer to the newly created texture. This pointer should not be dropped. See IReferenceCounted::drop() for more information. */\r
338                 virtual ITexture* addTextureCubemap(const io::path& name, IImage* imagePosX, IImage* imageNegX, IImage* imagePosY,\r
339                         IImage* imageNegY, IImage* imagePosZ, IImage* imageNegZ) = 0;\r
340 \r
341                 //! Creates an empty cubemap texture of specified size.\r
342                 /** \param sideLen diameter of one side of the cube\r
343                 \param name A name for the texture. Later calls of\r
344                 getTexture() with this name will return this texture.\r
345                 The name can _not_ be empty.\r
346                 \param format Desired color format of the texture. Please note\r
347                 that the driver may choose to create the texture in another\r
348                 color format.\r
349                 \return Pointer to the newly created texture.   */\r
350                 virtual ITexture* addTextureCubemap(const irr::u32 sideLen, const io::path& name, ECOLOR_FORMAT format = ECF_A8R8G8B8) = 0;\r
351 \r
352                 //! Adds a new render target texture to the texture cache.\r
353                 /** \param size Size of the texture, in pixels. Width and\r
354                 height should be a power of two (e.g. 64, 128, 256, 512, ...)\r
355                 and it should not be bigger than the backbuffer, because it\r
356                 shares the zbuffer with the screen buffer.\r
357                 \param name A name for the texture. Later calls of getTexture() with this name will return this texture.\r
358                 The name can _not_ be empty.\r
359                 \param format The color format of the render target. Floating point formats are supported.\r
360                 \return Pointer to the created texture or 0 if the texture\r
361                 could not be created. This pointer should not be dropped. See\r
362                 IReferenceCounted::drop() for more information.\r
363                 You may want to remove it from driver texture cache with removeTexture if you no longer need it.\r
364                 */\r
365                 virtual ITexture* addRenderTargetTexture(const core::dimension2d<u32>& size,\r
366                                 const io::path& name = "rt", const ECOLOR_FORMAT format = ECF_UNKNOWN) =0;\r
367 \r
368                 //! Adds a new render target texture with 6 sides for a cubemap map to the texture cache.\r
369                 /** NOTE: Only supported on D3D9 so far.\r
370                 \param sideLen Length of one cubemap side.\r
371                 \param name A name for the texture. Later calls of getTexture() with this name will return this texture.\r
372                 The name can _not_ be empty.\r
373                 \param format The color format of the render target. Floating point formats are supported.\r
374                 \return Pointer to the created texture or 0 if the texture\r
375                 could not be created. This pointer should not be dropped. See\r
376                 IReferenceCounted::drop() for more information. */\r
377                 virtual ITexture* addRenderTargetTextureCubemap(const irr::u32 sideLen,\r
378                                 const io::path& name = "rt", const ECOLOR_FORMAT format = ECF_UNKNOWN) =0;\r
379 \r
380                 //! Removes a texture from the texture cache and deletes it.\r
381                 /** This method can free a lot of memory!\r
382                 Please note that after calling this, the pointer to the\r
383                 ITexture may no longer be valid, if it was not grabbed before\r
384                 by other parts of the engine for storing it longer. So it is a\r
385                 good idea to set all materials which are using this texture to\r
386                 0 or another texture first.\r
387                 \param texture Texture to delete from the engine cache. */\r
388                 virtual void removeTexture(ITexture* texture) =0;\r
389 \r
390                 //! Removes all textures from the texture cache and deletes them.\r
391                 /** This method can free a lot of memory!\r
392                 Please note that after calling this, the pointer to the\r
393                 ITexture may no longer be valid, if it was not grabbed before\r
394                 by other parts of the engine for storing it longer. So it is a\r
395                 good idea to set all materials which are using this texture to\r
396                 0 or another texture first. */\r
397                 virtual void removeAllTextures() =0;\r
398 \r
399                 //! Remove hardware buffer\r
400                 virtual void removeHardwareBuffer(const scene::IMeshBuffer* mb) =0;\r
401 \r
402                 //! Remove all hardware buffers\r
403                 virtual void removeAllHardwareBuffers() =0;\r
404 \r
405                 //! Create occlusion query.\r
406                 /** Use node for identification and mesh for occlusion test. */\r
407                 virtual void addOcclusionQuery(scene::ISceneNode* node,\r
408                                 const scene::IMesh* mesh=0) =0;\r
409 \r
410                 //! Remove occlusion query.\r
411                 virtual void removeOcclusionQuery(scene::ISceneNode* node) =0;\r
412 \r
413                 //! Remove all occlusion queries.\r
414                 virtual void removeAllOcclusionQueries() =0;\r
415 \r
416                 //! Run occlusion query. Draws mesh stored in query.\r
417                 /** If the mesh shall not be rendered visible, use\r
418                 overrideMaterial to disable the color and depth buffer. */\r
419                 virtual void runOcclusionQuery(scene::ISceneNode* node, bool visible=false) =0;\r
420 \r
421                 //! Run all occlusion queries. Draws all meshes stored in queries.\r
422                 /** If the meshes shall not be rendered visible, use\r
423                 overrideMaterial to disable the color and depth buffer. */\r
424                 virtual void runAllOcclusionQueries(bool visible=false) =0;\r
425 \r
426                 //! Update occlusion query. Retrieves results from GPU.\r
427                 /** If the query shall not block, set the flag to false.\r
428                 Update might not occur in this case, though */\r
429                 virtual void updateOcclusionQuery(scene::ISceneNode* node, bool block=true) =0;\r
430 \r
431                 //! Update all occlusion queries. Retrieves results from GPU.\r
432                 /** If the query shall not block, set the flag to false.\r
433                 Update might not occur in this case, though */\r
434                 virtual void updateAllOcclusionQueries(bool block=true) =0;\r
435 \r
436                 //! Return query result.\r
437                 /** Return value is the number of visible pixels/fragments.\r
438                 The value is a safe approximation, i.e. can be larger than the\r
439                 actual value of pixels. */\r
440                 virtual u32 getOcclusionQueryResult(scene::ISceneNode* node) const =0;\r
441 \r
442                 //! Create render target.\r
443                 virtual IRenderTarget* addRenderTarget() = 0;\r
444 \r
445                 //! Remove render target.\r
446                 virtual void removeRenderTarget(IRenderTarget* renderTarget) = 0;\r
447 \r
448                 //! Remove all render targets.\r
449                 virtual void removeAllRenderTargets() = 0;\r
450 \r
451                 //! Sets a boolean alpha channel on the texture based on a color key.\r
452                 /** This makes the texture fully transparent at the texels where\r
453                 this color key can be found when using for example draw2DImage\r
454                 with useAlphachannel==true.  The alpha of other texels is not modified.\r
455                 \param texture Texture whose alpha channel is modified.\r
456                 \param color Color key color. Every texel with this color will\r
457                 become fully transparent as described above. Please note that the\r
458                 colors of a texture may be converted when loading it, so the\r
459                 color values may not be exactly the same in the engine and for\r
460                 example in picture edit programs. To avoid this problem, you\r
461                 could use the makeColorKeyTexture method, which takes the\r
462                 position of a pixel instead a color value.\r
463                 \param zeroTexels (deprecated) If set to true, then any texels that match\r
464                 the color key will have their color, as well as their alpha, set to zero\r
465                 (i.e. black). This behavior matches the legacy (buggy) behavior prior\r
466                 to release 1.5 and is provided for backwards compatibility only.\r
467                 This parameter may be removed by Irrlicht 1.9. */\r
468                 virtual void makeColorKeyTexture(video::ITexture* texture,\r
469                                                 video::SColor color,\r
470                                                 bool zeroTexels = false) const =0;\r
471 \r
472                 //! Sets a boolean alpha channel on the texture based on the color at a position.\r
473                 /** This makes the texture fully transparent at the texels where\r
474                 the color key can be found when using for example draw2DImage\r
475                 with useAlphachannel==true.  The alpha of other texels is not modified.\r
476                 \param texture Texture whose alpha channel is modified.\r
477                 \param colorKeyPixelPos Position of a pixel with the color key\r
478                 color. Every texel with this color will become fully transparent as\r
479                 described above.\r
480                 \param zeroTexels (deprecated) If set to true, then any texels that match\r
481                 the color key will have their color, as well as their alpha, set to zero\r
482                 (i.e. black). This behavior matches the legacy (buggy) behavior prior\r
483                 to release 1.5 and is provided for backwards compatibility only.\r
484                 This parameter may be removed by Irrlicht 1.9. */\r
485                 virtual void makeColorKeyTexture(video::ITexture* texture,\r
486                                 core::position2d<s32> colorKeyPixelPos,\r
487                                 bool zeroTexels = false) const =0;\r
488 \r
489                 //! Set a render target.\r
490                 /** This will only work if the driver supports the\r
491                 EVDF_RENDER_TO_TARGET feature, which can be queried with\r
492                 queryFeature(). Please note that you cannot render 3D or 2D\r
493                 geometry with a render target as texture on it when you are rendering\r
494                 the scene into this render target at the same time. It is usually only\r
495                 possible to render into a texture between the\r
496                 IVideoDriver::beginScene() and endScene() method calls. If you need the\r
497                 best performance use this method instead of setRenderTarget.\r
498                 \param target Render target object. If set to nullptr, it makes the\r
499                 window the current render target.\r
500                 \param clearFlag A combination of the E_CLEAR_BUFFER_FLAG bit-flags.\r
501                 \param clearColor The clear color for the color buffer.\r
502                 \param clearDepth The clear value for the depth buffer.\r
503                 \param clearStencil The clear value for the stencil buffer.\r
504                 \return True if successful and false if not. */\r
505                 virtual bool setRenderTargetEx(IRenderTarget* target, u16 clearFlag, SColor clearColor = SColor(255,0,0,0),\r
506                         f32 clearDepth = 1.f, u8 clearStencil = 0) = 0;\r
507 \r
508                 //! Sets a new render target.\r
509                 /** This will only work if the driver supports the\r
510                 EVDF_RENDER_TO_TARGET feature, which can be queried with\r
511                 queryFeature(). Usually, rendering to textures is done in this\r
512                 way:\r
513                 \code\r
514                 // create render target\r
515                 ITexture* target = driver->addRenderTargetTexture(core::dimension2d<u32>(128,128), "rtt1");\r
516 \r
517                 // ...\r
518 \r
519                 driver->setRenderTarget(target); // set render target\r
520                 // .. draw stuff here\r
521                 driver->setRenderTarget(0); // set previous render target\r
522                 \endcode\r
523                 Please note that you cannot render 3D or 2D geometry with a\r
524                 render target as texture on it when you are rendering the scene\r
525                 into this render target at the same time. It is usually only\r
526                 possible to render into a texture between the\r
527                 IVideoDriver::beginScene() and endScene() method calls.\r
528                 \param texture New render target. Must be a texture created with\r
529                 IVideoDriver::addRenderTargetTexture(). If set to nullptr, it makes\r
530                 the window the current render target.\r
531                 \param clearFlag A combination of the E_CLEAR_BUFFER_FLAG bit-flags.\r
532                 \param clearColor The clear color for the color buffer.\r
533                 \param clearDepth The clear value for the depth buffer.\r
534                 \param clearStencil The clear value for the stencil buffer.\r
535                 \return True if successful and false if not. */\r
536                 virtual bool setRenderTarget(ITexture* texture, u16 clearFlag=ECBF_COLOR|ECBF_DEPTH, SColor clearColor = SColor(255,0,0,0),\r
537                         f32 clearDepth = 1.f, u8 clearStencil = 0) = 0;\r
538 \r
539                 //! Sets a new render target.\r
540                 //! Prefer to use the setRenderTarget function taking flags as parameter as this one can't clear the stencil buffer.\r
541                 //! It's still offered for backward compatibility.\r
542                 bool setRenderTarget(ITexture* texture, bool clearBackBuffer, bool clearZBuffer, SColor color = SColor(255,0,0,0))\r
543                 {\r
544                         u16 flag = 0;\r
545 \r
546                         if (clearBackBuffer)\r
547                                 flag |= ECBF_COLOR;\r
548 \r
549                         if (clearZBuffer)\r
550                                 flag |= ECBF_DEPTH;\r
551 \r
552                         return setRenderTarget(texture, flag, color);\r
553                 }\r
554 \r
555                 //! Sets a new viewport.\r
556                 /** Every rendering operation is done into this new area.\r
557                 \param area: Rectangle defining the new area of rendering\r
558                 operations. */\r
559                 virtual void setViewPort(const core::rect<s32>& area) =0;\r
560 \r
561                 //! Gets the area of the current viewport.\r
562                 /** \return Rectangle of the current viewport. */\r
563                 virtual const core::rect<s32>& getViewPort() const =0;\r
564 \r
565                 //! Draws a vertex primitive list\r
566                 /** Note that, depending on the index type, some vertices might be not\r
567                 accessible through the index list. The limit is at 65535 vertices for 16bit\r
568                 indices. Please note that currently not all primitives are available for\r
569                 all drivers, and some might be emulated via triangle renders.\r
570                 \param vertices Pointer to array of vertices.\r
571                 \param vertexCount Amount of vertices in the array.\r
572                 \param indexList Pointer to array of indices. These define the vertices used\r
573                 for each primitive. Depending on the pType, indices are interpreted as single\r
574                 objects (for point like primitives), pairs (for lines), triplets (for\r
575                 triangles), or quads.\r
576                 \param primCount Amount of Primitives\r
577                 \param vType Vertex type, e.g. video::EVT_STANDARD for S3DVertex.\r
578                 \param pType Primitive type, e.g. scene::EPT_TRIANGLE_FAN for a triangle fan.\r
579                 \param iType Index type, e.g. video::EIT_16BIT for 16bit indices. */\r
580                 virtual void drawVertexPrimitiveList(const void* vertices, u32 vertexCount,\r
581                                 const void* indexList, u32 primCount,\r
582                                 E_VERTEX_TYPE vType=EVT_STANDARD,\r
583                                 scene::E_PRIMITIVE_TYPE pType=scene::EPT_TRIANGLES,\r
584                                 E_INDEX_TYPE iType=EIT_16BIT) =0;\r
585 \r
586                 //! Draws a vertex primitive list in 2d\r
587                 /** Compared to the general (3d) version of this method, this\r
588                 one sets up a 2d render mode, and uses only x and y of vectors.\r
589                 Note that, depending on the index type, some vertices might be\r
590                 not accessible through the index list. The limit is at 65535\r
591                 vertices for 16bit indices. Please note that currently not all\r
592                 primitives are available for all drivers, and some might be\r
593                 emulated via triangle renders. This function is not available\r
594                 for the sw drivers.\r
595                 \param vertices Pointer to array of vertices.\r
596                 \param vertexCount Amount of vertices in the array.\r
597                 \param indexList Pointer to array of indices. These define the\r
598                 vertices used for each primitive. Depending on the pType,\r
599                 indices are interpreted as single objects (for point like\r
600                 primitives), pairs (for lines), triplets (for triangles), or\r
601                 quads.\r
602                 \param primCount Amount of Primitives\r
603                 \param vType Vertex type, e.g. video::EVT_STANDARD for S3DVertex.\r
604                 \param pType Primitive type, e.g. scene::EPT_TRIANGLE_FAN for a triangle fan.\r
605                 \param iType Index type, e.g. video::EIT_16BIT for 16bit indices. */\r
606                 virtual void draw2DVertexPrimitiveList(const void* vertices, u32 vertexCount,\r
607                                 const void* indexList, u32 primCount,\r
608                                 E_VERTEX_TYPE vType=EVT_STANDARD,\r
609                                 scene::E_PRIMITIVE_TYPE pType=scene::EPT_TRIANGLES,\r
610                                 E_INDEX_TYPE iType=EIT_16BIT) =0;\r
611 \r
612                 //! Draws an indexed triangle list.\r
613                 /** Note that there may be at maximum 65536 vertices, because\r
614                 the index list is an array of 16 bit values each with a maximum\r
615                 value of 65536. If there are more than 65536 vertices in the\r
616                 list, results of this operation are not defined.\r
617                 \param vertices Pointer to array of vertices.\r
618                 \param vertexCount Amount of vertices in the array.\r
619                 \param indexList Pointer to array of indices.\r
620                 \param triangleCount Amount of Triangles. Usually amount of indices / 3. */\r
621                 void drawIndexedTriangleList(const S3DVertex* vertices,\r
622                         u32 vertexCount, const u16* indexList, u32 triangleCount)\r
623                 {\r
624                         drawVertexPrimitiveList(vertices, vertexCount, indexList, triangleCount, EVT_STANDARD, scene::EPT_TRIANGLES, EIT_16BIT);\r
625                 }\r
626 \r
627                 //! Draws an indexed triangle list.\r
628                 /** Note that there may be at maximum 65536 vertices, because\r
629                 the index list is an array of 16 bit values each with a maximum\r
630                 value of 65536. If there are more than 65536 vertices in the\r
631                 list, results of this operation are not defined.\r
632                 \param vertices Pointer to array of vertices.\r
633                 \param vertexCount Amount of vertices in the array.\r
634                 \param indexList Pointer to array of indices.\r
635                 \param triangleCount Amount of Triangles. Usually amount of indices / 3. */\r
636                 void drawIndexedTriangleList(const S3DVertex2TCoords* vertices,\r
637                         u32 vertexCount, const u16* indexList, u32 triangleCount)\r
638                 {\r
639                         drawVertexPrimitiveList(vertices, vertexCount, indexList, triangleCount, EVT_2TCOORDS, scene::EPT_TRIANGLES, EIT_16BIT);\r
640                 }\r
641 \r
642                 //! Draws an indexed triangle list.\r
643                 /** Note that there may be at maximum 65536 vertices, because\r
644                 the index list is an array of 16 bit values each with a maximum\r
645                 value of 65536. If there are more than 65536 vertices in the\r
646                 list, results of this operation are not defined.\r
647                 \param vertices Pointer to array of vertices.\r
648                 \param vertexCount Amount of vertices in the array.\r
649                 \param indexList Pointer to array of indices.\r
650                 \param triangleCount Amount of Triangles. Usually amount of indices / 3. */\r
651                 void drawIndexedTriangleList(const S3DVertexTangents* vertices,\r
652                         u32 vertexCount, const u16* indexList, u32 triangleCount)\r
653                 {\r
654                         drawVertexPrimitiveList(vertices, vertexCount, indexList, triangleCount, EVT_TANGENTS, scene::EPT_TRIANGLES, EIT_16BIT);\r
655                 }\r
656 \r
657                 //! Draws an indexed triangle fan.\r
658                 /** Note that there may be at maximum 65536 vertices, because\r
659                 the index list is an array of 16 bit values each with a maximum\r
660                 value of 65536. If there are more than 65536 vertices in the\r
661                 list, results of this operation are not defined.\r
662                 \param vertices Pointer to array of vertices.\r
663                 \param vertexCount Amount of vertices in the array.\r
664                 \param indexList Pointer to array of indices.\r
665                 \param triangleCount Amount of Triangles. Usually amount of indices - 2. */\r
666                 void drawIndexedTriangleFan(const S3DVertex* vertices,\r
667                         u32 vertexCount, const u16* indexList, u32 triangleCount)\r
668                 {\r
669                         drawVertexPrimitiveList(vertices, vertexCount, indexList, triangleCount, EVT_STANDARD, scene::EPT_TRIANGLE_FAN, EIT_16BIT);\r
670                 }\r
671 \r
672                 //! Draws an indexed triangle fan.\r
673                 /** Note that there may be at maximum 65536 vertices, because\r
674                 the index list is an array of 16 bit values each with a maximum\r
675                 value of 65536. If there are more than 65536 vertices in the\r
676                 list, results of this operation are not defined.\r
677                 \param vertices Pointer to array of vertices.\r
678                 \param vertexCount Amount of vertices in the array.\r
679                 \param indexList Pointer to array of indices.\r
680                 \param triangleCount Amount of Triangles. Usually amount of indices - 2. */\r
681                 void drawIndexedTriangleFan(const S3DVertex2TCoords* vertices,\r
682                         u32 vertexCount, const u16* indexList, u32 triangleCount)\r
683                 {\r
684                         drawVertexPrimitiveList(vertices, vertexCount, indexList, triangleCount, EVT_2TCOORDS, scene::EPT_TRIANGLE_FAN, EIT_16BIT);\r
685                 }\r
686 \r
687                 //! Draws an indexed triangle fan.\r
688                 /** Note that there may be at maximum 65536 vertices, because\r
689                 the index list is an array of 16 bit values each with a maximum\r
690                 value of 65536. If there are more than 65536 vertices in the\r
691                 list, results of this operation are not defined.\r
692                 \param vertices Pointer to array of vertices.\r
693                 \param vertexCount Amount of vertices in the array.\r
694                 \param indexList Pointer to array of indices.\r
695                 \param triangleCount Amount of Triangles. Usually amount of indices - 2. */\r
696                 void drawIndexedTriangleFan(const S3DVertexTangents* vertices,\r
697                         u32 vertexCount, const u16* indexList, u32 triangleCount)\r
698                 {\r
699                         drawVertexPrimitiveList(vertices, vertexCount, indexList, triangleCount, EVT_TANGENTS, scene::EPT_TRIANGLE_FAN, EIT_16BIT);\r
700                 }\r
701 \r
702                 //! Draws a 3d line.\r
703                 /** For some implementations, this method simply calls\r
704                 drawVertexPrimitiveList for some triangles.\r
705                 Note that the line is drawn using the current transformation\r
706                 matrix and material. So if you need to draw the 3D line\r
707                 independently of the current transformation, use\r
708                 \code\r
709                 driver->setMaterial(someMaterial);\r
710                 driver->setTransform(video::ETS_WORLD, core::IdentityMatrix);\r
711                 \endcode\r
712                 for some properly set up material before drawing the line.\r
713                 Some drivers support line thickness set in the material.\r
714                 \param start Start of the 3d line.\r
715                 \param end End of the 3d line.\r
716                 \param color Color of the line. */\r
717                 virtual void draw3DLine(const core::vector3df& start,\r
718                         const core::vector3df& end, SColor color = SColor(255,255,255,255)) =0;\r
719 \r
720                 //! Draws a 3d axis aligned box.\r
721                 /** This method simply calls draw3DLine for the edges of the\r
722                 box. Note that the box is drawn using the current transformation\r
723                 matrix and material. So if you need to draw it independently of\r
724                 the current transformation, use\r
725                 \code\r
726                 driver->setMaterial(someMaterial);\r
727                 driver->setTransform(video::ETS_WORLD, core::IdentityMatrix);\r
728                 \endcode\r
729                 for some properly set up material before drawing the box.\r
730                 \param box The axis aligned box to draw\r
731                 \param color Color to use while drawing the box. */\r
732                 virtual void draw3DBox(const core::aabbox3d<f32>& box,\r
733                         SColor color = SColor(255,255,255,255)) =0;\r
734 \r
735                 //! Draws a 2d image without any special effects\r
736                 /** \param texture Pointer to texture to use.\r
737                 \param destPos Upper left 2d destination position where the\r
738                 image will be drawn.\r
739                 \param useAlphaChannelOfTexture: If true, the alpha channel of\r
740                 the texture is used to draw the image.*/\r
741                 virtual void draw2DImage(const video::ITexture* texture,\r
742                         const core::position2d<s32>& destPos, bool useAlphaChannelOfTexture=false) =0;\r
743 \r
744                 //! Draws a 2d image using a color\r
745                 /** (if color is other than\r
746                 Color(255,255,255,255)) and the alpha channel of the texture.\r
747                 \param texture Texture to be drawn.\r
748                 \param destPos Upper left 2d destination position where the\r
749                 image will be drawn.\r
750                 \param sourceRect Source rectangle in the texture (based on it's OriginalSize)\r
751                 \param clipRect Pointer to rectangle on the screen where the\r
752                 image is clipped to.\r
753                 If this pointer is NULL the image is not clipped.\r
754                 \param color Color with which the image is drawn. If the color\r
755                 equals Color(255,255,255,255) it is ignored. Note that the\r
756                 alpha component is used: If alpha is other than 255, the image\r
757                 will be transparent.\r
758                 \param useAlphaChannelOfTexture: If true, the alpha channel of\r
759                 the texture is used to draw the image.*/\r
760                 virtual void draw2DImage(const video::ITexture* texture, const core::position2d<s32>& destPos,\r
761                         const core::rect<s32>& sourceRect, const core::rect<s32>* clipRect =0,\r
762                         SColor color=SColor(255,255,255,255), bool useAlphaChannelOfTexture=false) =0;\r
763 \r
764                 //! Draws a set of 2d images, using a color and the alpha channel of the texture.\r
765                 /** All drawings are clipped against clipRect (if != 0).\r
766                 The subtextures are defined by the array of sourceRects and are\r
767                 positioned using the array of positions.\r
768                 \param texture Texture to be drawn.\r
769                 \param positions Array of upper left 2d destinations where the\r
770                 images will be drawn.\r
771                 \param sourceRects Source rectangles of the texture (based on it's OriginalSize)\r
772                 \param clipRect Pointer to rectangle on the screen where the\r
773                 images are clipped to.\r
774                 If this pointer is 0 then the image is not clipped.\r
775                 \param color Color with which the image is drawn.\r
776                 Note that the alpha component is used. If alpha is other than\r
777                 255, the image will be transparent.\r
778                 \param useAlphaChannelOfTexture: If true, the alpha channel of\r
779                 the texture is used to draw the image. */\r
780                 virtual void draw2DImageBatch(const video::ITexture* texture,\r
781                                 const core::array<core::position2d<s32> >& positions,\r
782                                 const core::array<core::rect<s32> >& sourceRects,\r
783                                 const core::rect<s32>* clipRect=0,\r
784                                 SColor color=SColor(255,255,255,255),\r
785                                 bool useAlphaChannelOfTexture=false) =0;\r
786 \r
787                 //! Draws a part of the texture into the rectangle. Note that colors must be an array of 4 colors if used.\r
788                 /** Suggested and first implemented by zola.\r
789                 \param texture The texture to draw from\r
790                 \param destRect The rectangle to draw into\r
791                 \param sourceRect The rectangle denoting a part of the texture (based on it's OriginalSize)\r
792                 \param clipRect Clips the destination rectangle (may be 0)\r
793                 \param colors Array of 4 colors denoting the color values of\r
794                 the corners of the destRect\r
795                 \param useAlphaChannelOfTexture True if alpha channel will be\r
796                 blended. */\r
797                 virtual void draw2DImage(const video::ITexture* texture, const core::rect<s32>& destRect,\r
798                         const core::rect<s32>& sourceRect, const core::rect<s32>* clipRect =0,\r
799                         const video::SColor * const colors=0, bool useAlphaChannelOfTexture=false) =0;\r
800 \r
801                 //! Draws a 2d rectangle.\r
802                 /** \param color Color of the rectangle to draw. The alpha\r
803                 component will not be ignored and specifies how transparent the\r
804                 rectangle will be.\r
805                 \param pos Position of the rectangle.\r
806                 \param clip Pointer to rectangle against which the rectangle\r
807                 will be clipped. If the pointer is null, no clipping will be\r
808                 performed. */\r
809                 virtual void draw2DRectangle(SColor color, const core::rect<s32>& pos,\r
810                         const core::rect<s32>* clip =0) =0;\r
811 \r
812                 //! Draws a 2d rectangle with a gradient.\r
813                 /** \param colorLeftUp Color of the upper left corner to draw.\r
814                 The alpha component will not be ignored and specifies how\r
815                 transparent the rectangle will be.\r
816                 \param colorRightUp Color of the upper right corner to draw.\r
817                 The alpha component will not be ignored and specifies how\r
818                 transparent the rectangle will be.\r
819                 \param colorLeftDown Color of the lower left corner to draw.\r
820                 The alpha component will not be ignored and specifies how\r
821                 transparent the rectangle will be.\r
822                 \param colorRightDown Color of the lower right corner to draw.\r
823                 The alpha component will not be ignored and specifies how\r
824                 transparent the rectangle will be.\r
825                 \param pos Position of the rectangle.\r
826                 \param clip Pointer to rectangle against which the rectangle\r
827                 will be clipped. If the pointer is null, no clipping will be\r
828                 performed. */\r
829                 virtual void draw2DRectangle(const core::rect<s32>& pos,\r
830                                 SColor colorLeftUp, SColor colorRightUp,\r
831                                 SColor colorLeftDown, SColor colorRightDown,\r
832                                 const core::rect<s32>* clip =0) =0;\r
833 \r
834                 //! Draws a 2d line.\r
835                 /** In theory both start and end will be included in coloring.\r
836                 BUG: Currently d3d ignores the last pixel\r
837                 (it uses the so called "diamond exit rule" for drawing lines).\r
838                 \param start Screen coordinates of the start of the line\r
839                 in pixels.\r
840                 \param end Screen coordinates of the start of the line in\r
841                 pixels.\r
842                 \param color Color of the line to draw. */\r
843                 virtual void draw2DLine(const core::position2d<s32>& start,\r
844                                         const core::position2d<s32>& end,\r
845                                         SColor color=SColor(255,255,255,255)) =0;\r
846 \r
847                 //! Draws a mesh buffer\r
848                 /** \param mb Buffer to draw */\r
849                 virtual void drawMeshBuffer(const scene::IMeshBuffer* mb) =0;\r
850 \r
851                 //! Draws normals of a mesh buffer\r
852                 /** \param mb Buffer to draw the normals of\r
853                 \param length length scale factor of the normals\r
854                 \param color Color the normals are rendered with\r
855                 */\r
856                 virtual void drawMeshBufferNormals(const scene::IMeshBuffer* mb, f32 length=10.f, SColor color=0xffffffff) =0;\r
857 \r
858                 //! Sets the fog mode.\r
859                 /** These are global values attached to each 3d object rendered,\r
860                 which has the fog flag enabled in its material.\r
861                 \param color Color of the fog\r
862                 \param fogType Type of fog used\r
863                 \param start Only used in linear fog mode (linearFog=true).\r
864                 Specifies where fog starts.\r
865                 \param end Only used in linear fog mode (linearFog=true).\r
866                 Specifies where fog ends.\r
867                 \param density Only used in exponential fog mode\r
868                 (linearFog=false). Must be a value between 0 and 1.\r
869                 \param pixelFog Set this to false for vertex fog, and true if\r
870                 you want per-pixel fog.\r
871                 \param rangeFog Set this to true to enable range-based vertex\r
872                 fog. The distance from the viewer is used to compute the fog,\r
873                 not the z-coordinate. This is better, but slower. This might not\r
874                 be available with all drivers and fog settings. */\r
875                 virtual void setFog(SColor color=SColor(0,255,255,255),\r
876                                 E_FOG_TYPE fogType=EFT_FOG_LINEAR,\r
877                                 f32 start=50.0f, f32 end=100.0f, f32 density=0.01f,\r
878                                 bool pixelFog=false, bool rangeFog=false) =0;\r
879 \r
880                 //! Gets the fog mode.\r
881                 virtual void getFog(SColor& color, E_FOG_TYPE& fogType,\r
882                                 f32& start, f32& end, f32& density,\r
883                                 bool& pixelFog, bool& rangeFog) = 0;\r
884 \r
885                 //! Get the current color format of the color buffer\r
886                 /** \return Color format of the color buffer. */\r
887                 virtual ECOLOR_FORMAT getColorFormat() const =0;\r
888 \r
889                 //! Get the size of the screen or render window.\r
890                 /** \return Size of screen or render window. */\r
891                 virtual const core::dimension2d<u32>& getScreenSize() const =0;\r
892 \r
893                 //! Get the size of the current render target\r
894                 /** This method will return the screen size if the driver\r
895                 doesn't support render to texture, or if the current render\r
896                 target is the screen.\r
897                 \return Size of render target or screen/window */\r
898                 virtual const core::dimension2d<u32>& getCurrentRenderTargetSize() const =0;\r
899 \r
900                 //! Returns current frames per second value.\r
901                 /** This value is updated approximately every 1.5 seconds and\r
902                 is only intended to provide a rough guide to the average frame\r
903                 rate. It is not suitable for use in performing timing\r
904                 calculations or framerate independent movement.\r
905                 \return Approximate amount of frames per second drawn. */\r
906                 virtual s32 getFPS() const =0;\r
907 \r
908                 //! Returns amount of primitives (mostly triangles) which were drawn in the last frame.\r
909                 /** Together with getFPS() very useful method for statistics.\r
910                 \param mode Defines if the primitives drawn are accumulated or\r
911                 counted per frame.\r
912                 \return Amount of primitives drawn in the last frame. */\r
913                 virtual u32 getPrimitiveCountDrawn( u32 mode =0 ) const =0;\r
914 \r
915                 //! Gets name of this video driver.\r
916                 /** \return Returns the name of the video driver, e.g. in case\r
917                 of the Direct3D8 driver, it would return "Direct3D 8.1". */\r
918                 virtual const wchar_t* getName() const =0;\r
919 \r
920                 //! Adds an external image loader to the engine.\r
921                 /** This is useful if the Irrlicht Engine should be able to load\r
922                 textures of currently unsupported file formats (e.g. gif). The\r
923                 IImageLoader only needs to be implemented for loading this file\r
924                 format. A pointer to the implementation can be passed to the\r
925                 engine using this method.\r
926                 \param loader Pointer to the external loader created. */\r
927                 virtual void addExternalImageLoader(IImageLoader* loader) =0;\r
928 \r
929                 //! Adds an external image writer to the engine.\r
930                 /** This is useful if the Irrlicht Engine should be able to\r
931                 write textures of currently unsupported file formats (e.g\r
932                 .gif). The IImageWriter only needs to be implemented for\r
933                 writing this file format. A pointer to the implementation can\r
934                 be passed to the engine using this method.\r
935                 \param writer: Pointer to the external writer created. */\r
936                 virtual void addExternalImageWriter(IImageWriter* writer) =0;\r
937 \r
938                 //! Returns the maximum amount of primitives\r
939                 /** (mostly vertices) which the device is able to render with\r
940                 one drawVertexPrimitiveList call.\r
941                 \return Maximum amount of primitives. */\r
942                 virtual u32 getMaximalPrimitiveCount() const =0;\r
943 \r
944                 //! Enables or disables a texture creation flag.\r
945                 /** These flags define how textures should be created. By\r
946                 changing this value, you can influence for example the speed of\r
947                 rendering a lot. But please note that the video drivers take\r
948                 this value only as recommendation. It could happen that you\r
949                 enable the ETCF_ALWAYS_16_BIT mode, but the driver still creates\r
950                 32 bit textures.\r
951                 \param flag Texture creation flag.\r
952                 \param enabled Specifies if the given flag should be enabled or\r
953                 disabled. */\r
954                 virtual void setTextureCreationFlag(E_TEXTURE_CREATION_FLAG flag, bool enabled=true) =0;\r
955 \r
956                 //! Returns if a texture creation flag is enabled or disabled.\r
957                 /** You can change this value using setTextureCreationFlag().\r
958                 \param flag Texture creation flag.\r
959                 \return The current texture creation flag enabled mode. */\r
960                 virtual bool getTextureCreationFlag(E_TEXTURE_CREATION_FLAG flag) const =0;\r
961 \r
962                 //! Creates a software images from a file.\r
963                 /** No hardware texture will be created for those images. This\r
964                 method is useful for example if you want to read a heightmap\r
965                 for a terrain renderer.\r
966                 \param filename Name of the file from which the images are created.\r
967                 \param type Pointer to E_TEXTURE_TYPE where a recommended type of the texture will be stored.\r
968                 \return The array of created images.\r
969                 If you no longer need those images, you should call IImage::drop() on each of them.\r
970                 See IReferenceCounted::drop() for more information. */\r
971                 virtual core::array<IImage*> createImagesFromFile(const io::path& filename, E_TEXTURE_TYPE* type = 0) = 0;\r
972 \r
973                 //! Creates a software images from a file.\r
974                 /** No hardware texture will be created for those images. This\r
975                 method is useful for example if you want to read a heightmap\r
976                 for a terrain renderer.\r
977                 \param file File from which the image is created.\r
978                 \param type Pointer to E_TEXTURE_TYPE where a recommended type of the texture will be stored.\r
979                 \return The array of created images.\r
980                 If you no longer need those images, you should call IImage::drop() on each of them.\r
981                 See IReferenceCounted::drop() for more information. */\r
982                 virtual core::array<IImage*> createImagesFromFile(io::IReadFile* file, E_TEXTURE_TYPE* type = 0) = 0;\r
983 \r
984                 //! Creates a software image from a file.\r
985                 /** No hardware texture will be created for this image. This\r
986                 method is useful for example if you want to read a heightmap\r
987                 for a terrain renderer.\r
988                 \param filename Name of the file from which the image is\r
989                 created.\r
990                 \return The created image.\r
991                 If you no longer need the image, you should call IImage::drop().\r
992                 See IReferenceCounted::drop() for more information. */\r
993                 IImage* createImageFromFile(const io::path& filename)\r
994                 {\r
995                         core::array<IImage*> imageArray = createImagesFromFile(filename);\r
996 \r
997                         for (u32 i = 1; i < imageArray.size(); ++i)\r
998                                 imageArray[i]->drop();\r
999 \r
1000                         return (imageArray.size() > 0) ? imageArray[0] : 0;\r
1001                 }\r
1002 \r
1003                 //! Creates a software image from a file.\r
1004                 /** No hardware texture will be created for this image. This\r
1005                 method is useful for example if you want to read a heightmap\r
1006                 for a terrain renderer.\r
1007                 \param file File from which the image is created.\r
1008                 \return The created image.\r
1009                 If you no longer need the image, you should call IImage::drop().\r
1010                 See IReferenceCounted::drop() for more information. */\r
1011                 IImage* createImageFromFile(io::IReadFile* file)\r
1012                 {\r
1013                         core::array<IImage*> imageArray = createImagesFromFile(file);\r
1014 \r
1015                         for (u32 i = 1; i < imageArray.size(); ++i)\r
1016                                 imageArray[i]->drop();\r
1017 \r
1018                         return (imageArray.size() > 0) ? imageArray[0] : 0;\r
1019                 }\r
1020 \r
1021                 //! Writes the provided image to a file.\r
1022                 /** Requires that there is a suitable image writer registered\r
1023                 for writing the image.\r
1024                 \param image Image to write.\r
1025                 \param filename Name of the file to write.\r
1026                 \param param Control parameter for the backend (e.g. compression\r
1027                 level).\r
1028                 \return True on successful write. */\r
1029                 virtual bool writeImageToFile(IImage* image, const io::path& filename, u32 param = 0) = 0;\r
1030 \r
1031                 //! Writes the provided image to a file.\r
1032                 /** Requires that there is a suitable image writer registered\r
1033                 for writing the image.\r
1034                 \param image Image to write.\r
1035                 \param file  An already open io::IWriteFile object. The name\r
1036                 will be used to determine the appropriate image writer to use.\r
1037                 \param param Control parameter for the backend (e.g. compression\r
1038                 level).\r
1039                 \return True on successful write. */\r
1040                 virtual bool writeImageToFile(IImage* image, io::IWriteFile* file, u32 param =0) =0;\r
1041 \r
1042                 //! Creates a software image from a byte array.\r
1043                 /** No hardware texture will be created for this image. This\r
1044                 method is useful for example if you want to read a heightmap\r
1045                 for a terrain renderer.\r
1046                 \param format Desired color format of the texture\r
1047                 \param size Desired size of the image\r
1048                 \param data A byte array with pixel color information\r
1049                 \param ownForeignMemory If true, the image will use the data\r
1050                 pointer directly and own it afterward. If false, the memory\r
1051                 will by copied internally.\r
1052                 WARNING: Setting this to 'true' will not work across dll boundaries.\r
1053                 So unless you link Irrlicht statically you should keep this to 'false'.\r
1054                 The parameter is mainly for internal usage.\r
1055                 \param deleteMemory Whether the memory is deallocated upon\r
1056                 destruction.\r
1057                 \return The created image.\r
1058                 If you no longer need the image, you should call IImage::drop().\r
1059                 See IReferenceCounted::drop() for more information. */\r
1060                 virtual IImage* createImageFromData(ECOLOR_FORMAT format,\r
1061                         const core::dimension2d<u32>& size, void *data, bool ownForeignMemory = false,\r
1062                         bool deleteMemory = true) = 0;\r
1063 \r
1064                 //! Creates an empty software image.\r
1065                 /**\r
1066                 \param format Desired color format of the image.\r
1067                 \param size Size of the image to create.\r
1068                 \return The created image.\r
1069                 If you no longer need the image, you should call IImage::drop().\r
1070                 See IReferenceCounted::drop() for more information. */\r
1071                 virtual IImage* createImage(ECOLOR_FORMAT format, const core::dimension2d<u32>& size) =0;\r
1072 \r
1073                 //! Creates a software image by converting it to given format from another image.\r
1074                 /** \deprecated Create an empty image and use copyTo(). This method may be removed by Irrlicht 1.9.\r
1075                 \param format Desired color format of the image.\r
1076                 \param imageToCopy Image to copy to the new image.\r
1077                 \return The created image.\r
1078                 If you no longer need the image, you should call IImage::drop().\r
1079                 See IReferenceCounted::drop() for more information. */\r
1080                 _IRR_DEPRECATED_ virtual IImage* createImage(ECOLOR_FORMAT format, IImage *imageToCopy) =0;\r
1081 \r
1082                 //! Creates a software image from a part of another image.\r
1083                 /** \deprecated Create an empty image and use copyTo(). This method may be removed by Irrlicht 1.9.\r
1084                 \param imageToCopy Image to copy to the new image in part.\r
1085                 \param pos Position of rectangle to copy.\r
1086                 \param size Extents of rectangle to copy.\r
1087                 \return The created image.\r
1088                 If you no longer need the image, you should call IImage::drop().\r
1089                 See IReferenceCounted::drop() for more information. */\r
1090                 _IRR_DEPRECATED_ virtual IImage* createImage(IImage* imageToCopy,\r
1091                                 const core::position2d<s32>& pos,\r
1092                                 const core::dimension2d<u32>& size) =0;\r
1093 \r
1094                 //! Creates a software image from a part of a texture.\r
1095                 /**\r
1096                 \param texture Texture to copy to the new image in part.\r
1097                 \param pos Position of rectangle to copy.\r
1098                 \param size Extents of rectangle to copy.\r
1099                 \return The created image.\r
1100                 If you no longer need the image, you should call IImage::drop().\r
1101                 See IReferenceCounted::drop() for more information. */\r
1102                 virtual IImage* createImage(ITexture* texture,\r
1103                                 const core::position2d<s32>& pos,\r
1104                                 const core::dimension2d<u32>& size) =0;\r
1105 \r
1106                 //! Event handler for resize events. Only used by the engine internally.\r
1107                 /** Used to notify the driver that the window was resized.\r
1108                 Usually, there is no need to call this method. */\r
1109                 virtual void OnResize(const core::dimension2d<u32>& size) =0;\r
1110 \r
1111                 //! Adds a new material renderer to the video device.\r
1112                 /** Use this method to extend the VideoDriver with new material\r
1113                 types. To extend the engine using this method do the following:\r
1114                 Derive a class from IMaterialRenderer and override the methods\r
1115                 you need. For setting the right renderstates, you can try to\r
1116                 get a pointer to the real rendering device using\r
1117                 IVideoDriver::getExposedVideoData(). Add your class with\r
1118                 IVideoDriver::addMaterialRenderer(). To use an object being\r
1119                 displayed with your new material, set the MaterialType member of\r
1120                 the SMaterial struct to the value returned by this method.\r
1121                 If you simply want to create a new material using vertex and/or\r
1122                 pixel shaders it would be easier to use the\r
1123                 video::IGPUProgrammingServices interface which you can get\r
1124                 using the getGPUProgrammingServices() method.\r
1125                 \param renderer A pointer to the new renderer.\r
1126                 \param name Optional name for the material renderer entry.\r
1127                 \return The number of the material type which can be set in\r
1128                 SMaterial::MaterialType to use the renderer. -1 is returned if\r
1129                 an error occurred. For example if you tried to add an material\r
1130                 renderer to the software renderer or the null device, which do\r
1131                 not accept material renderers. */\r
1132                 virtual s32 addMaterialRenderer(IMaterialRenderer* renderer, const c8* name =0) =0;\r
1133 \r
1134                 //! Get access to a material renderer by index.\r
1135                 /** \param idx Id of the material renderer. Can be a value of\r
1136                 the E_MATERIAL_TYPE enum or a value which was returned by\r
1137                 addMaterialRenderer().\r
1138                 \return Pointer to material renderer or null if not existing. */\r
1139                 virtual IMaterialRenderer* getMaterialRenderer(u32 idx) const = 0;\r
1140 \r
1141                 //! Get amount of currently available material renderers.\r
1142                 /** \return Amount of currently available material renderers. */\r
1143                 virtual u32 getMaterialRendererCount() const =0;\r
1144 \r
1145                 //! Get name of a material renderer\r
1146                 /** This string can, e.g., be used to test if a specific\r
1147                 renderer already has been registered/created, or use this\r
1148                 string to store data about materials: This returned name will\r
1149                 be also used when serializing materials.\r
1150                 \param idx Id of the material renderer. Can be a value of the\r
1151                 E_MATERIAL_TYPE enum or a value which was returned by\r
1152                 addMaterialRenderer().\r
1153                 \return String with the name of the renderer, or 0 if not\r
1154                 exisiting */\r
1155                 virtual const c8* getMaterialRendererName(u32 idx) const =0;\r
1156 \r
1157                 //! Sets the name of a material renderer.\r
1158                 /** Will have no effect on built-in material renderers.\r
1159                 \param idx: Id of the material renderer. Can be a value of the\r
1160                 E_MATERIAL_TYPE enum or a value which was returned by\r
1161                 addMaterialRenderer().\r
1162                 \param name: New name of the material renderer. */\r
1163                 virtual void setMaterialRendererName(u32 idx, const c8* name) =0;\r
1164 \r
1165                 //! Swap the material renderers used for certain id's\r
1166                 /** Swap the IMaterialRenderers responsible for rendering specific\r
1167                  material-id's. This means every SMaterial using a MaterialType\r
1168                  with one of the indices involved here will now render differently.\r
1169                  \param idx1 First material index to swap. It must already exist or nothing happens.\r
1170                  \param idx2 Second material index to swap. It must already exist or nothing happens.\r
1171                  \param swapNames When true the renderer names also swap\r
1172                                   When false the names will stay at the original index */\r
1173                 virtual void swapMaterialRenderers(u32 idx1, u32 idx2, bool swapNames=true) = 0;\r
1174 \r
1175                 //! Returns driver and operating system specific data about the IVideoDriver.\r
1176                 /** This method should only be used if the engine should be\r
1177                 extended without having to modify the source of the engine.\r
1178                 \return Collection of device dependent pointers. */\r
1179                 virtual const SExposedVideoData& getExposedVideoData() =0;\r
1180 \r
1181                 //! Get type of video driver\r
1182                 /** \return Type of driver. */\r
1183                 virtual E_DRIVER_TYPE getDriverType() const =0;\r
1184 \r
1185                 //! Gets the IGPUProgrammingServices interface.\r
1186                 /** \return Pointer to the IGPUProgrammingServices. Returns 0\r
1187                 if the video driver does not support this. For example the\r
1188                 Software driver and the Null driver will always return 0. */\r
1189                 virtual IGPUProgrammingServices* getGPUProgrammingServices() =0;\r
1190 \r
1191                 //! Returns a pointer to the mesh manipulator.\r
1192                 virtual scene::IMeshManipulator* getMeshManipulator() =0;\r
1193 \r
1194                 //! Clear the color, depth and/or stencil buffers.\r
1195                 virtual void clearBuffers(u16 flag, SColor color = SColor(255,0,0,0), f32 depth = 1.f, u8 stencil = 0) = 0;\r
1196 \r
1197                 //! Clear the color, depth and/or stencil buffers.\r
1198                 _IRR_DEPRECATED_ void clearBuffers(bool backBuffer, bool depthBuffer, bool stencilBuffer, SColor color)\r
1199                 {\r
1200                         u16 flag = 0;\r
1201 \r
1202                         if (backBuffer)\r
1203                                 flag |= ECBF_COLOR;\r
1204 \r
1205                         if (depthBuffer)\r
1206                                 flag |= ECBF_DEPTH;\r
1207 \r
1208                         if (stencilBuffer)\r
1209                                 flag |= ECBF_STENCIL;\r
1210 \r
1211                         clearBuffers(flag, color);\r
1212                 }\r
1213 \r
1214                 //! Clears the ZBuffer.\r
1215                 /** Note that you usually need not to call this method, as it\r
1216                 is automatically done in IVideoDriver::beginScene() or\r
1217                 IVideoDriver::setRenderTarget() if you enable zBuffer. But if\r
1218                 you have to render some special things, you can clear the\r
1219                 zbuffer during the rendering process with this method any time.\r
1220                 */\r
1221                 void clearZBuffer()\r
1222                 {\r
1223                         clearBuffers(ECBF_DEPTH, SColor(255,0,0,0), 1.f, 0);\r
1224                 }\r
1225 \r
1226                 //! Make a screenshot of the last rendered frame.\r
1227                 /** \return An image created from the last rendered frame. */\r
1228                 virtual IImage* createScreenShot(video::ECOLOR_FORMAT format=video::ECF_UNKNOWN, video::E_RENDER_TARGET target=video::ERT_FRAME_BUFFER) =0;\r
1229 \r
1230                 //! Check if the image is already loaded.\r
1231                 /** Works similar to getTexture(), but does not load the texture\r
1232                 if it is not currently loaded.\r
1233                 \param filename Name of the texture.\r
1234                 \return Pointer to loaded texture, or 0 if not found. */\r
1235                 virtual video::ITexture* findTexture(const io::path& filename) = 0;\r
1236 \r
1237                 //! Set or unset a clipping plane.\r
1238                 /** There are at least 6 clipping planes available for the user\r
1239                 to set at will.\r
1240                 \param index The plane index. Must be between 0 and\r
1241                 MaxUserClipPlanes.\r
1242                 \param plane The plane itself.\r
1243                 \param enable If true, enable the clipping plane else disable\r
1244                 it.\r
1245                 \return True if the clipping plane is usable. */\r
1246                 virtual bool setClipPlane(u32 index, const core::plane3df& plane, bool enable=false) =0;\r
1247 \r
1248                 //! Enable or disable a clipping plane.\r
1249                 /** There are at least 6 clipping planes available for the user\r
1250                 to set at will.\r
1251                 \param index The plane index. Must be between 0 and\r
1252                 MaxUserClipPlanes.\r
1253                 \param enable If true, enable the clipping plane else disable\r
1254                 it. */\r
1255                 virtual void enableClipPlane(u32 index, bool enable) =0;\r
1256 \r
1257                 //! Set the minimum number of vertices for which a hw buffer will be created\r
1258                 /** \param count Number of vertices to set as minimum. */\r
1259                 virtual void setMinHardwareBufferVertexCount(u32 count) =0;\r
1260 \r
1261                 //! Get the global Material, which might override local materials.\r
1262                 /** Depending on the enable flags, values from this Material\r
1263                 are used to override those of local materials of some\r
1264                 meshbuffer being rendered.\r
1265                 \return Reference to the Override Material. */\r
1266                 virtual SOverrideMaterial& getOverrideMaterial() =0;\r
1267 \r
1268                 //! Get the 2d override material for altering its values\r
1269                 /** The 2d override material allows to alter certain render\r
1270                 states of the 2d methods. Not all members of SMaterial are\r
1271                 honored, especially not MaterialType and Textures. Moreover,\r
1272                 the zbuffer is always ignored, and lighting is always off. All\r
1273                 other flags can be changed, though some might have to effect\r
1274                 in most cases.\r
1275                 Please note that you have to enable/disable this effect with\r
1276                 enableMaterial2D(). This effect is costly, as it increases\r
1277                 the number of state changes considerably. Always reset the\r
1278                 values when done.\r
1279                 \return Material reference which should be altered to reflect\r
1280                 the new settings.\r
1281                 */\r
1282                 virtual SMaterial& getMaterial2D() =0;\r
1283 \r
1284                 //! Enable the 2d override material\r
1285                 /** \param enable Flag which tells whether the material shall be\r
1286                 enabled or disabled. */\r
1287                 virtual void enableMaterial2D(bool enable=true) =0;\r
1288 \r
1289                 //! Get the graphics card vendor name.\r
1290                 virtual core::stringc getVendorInfo() =0;\r
1291 \r
1292                 //! Only used by the engine internally.\r
1293                 /** The ambient color is set in the scene manager, see\r
1294                 scene::ISceneManager::setAmbientLight().\r
1295                 \param color New color of the ambient light. */\r
1296                 virtual void setAmbientLight(const SColorf& color) =0;\r
1297 \r
1298                 //! Get the global ambient light currently used by the driver\r
1299                 virtual const SColorf& getAmbientLight() const = 0;\r
1300 \r
1301                 //! Only used by the engine internally.\r
1302                 /** Passes the global material flag AllowZWriteOnTransparent.\r
1303                 Use the SceneManager attribute to set this value from your app.\r
1304                 \param flag Default behavior is to disable ZWrite, i.e. false. */\r
1305                 virtual void setAllowZWriteOnTransparent(bool flag) =0;\r
1306 \r
1307                 //! Get the maximum texture size supported.\r
1308                 virtual core::dimension2du getMaxTextureSize() const =0;\r
1309 \r
1310                 //! Color conversion convenience function\r
1311                 /** Convert an image (as array of pixels) from source to destination\r
1312                 array, thereby converting the color format. The pixel size is\r
1313                 determined by the color formats.\r
1314                 \param sP Pointer to source\r
1315                 \param sF Color format of source\r
1316                 \param sN Number of pixels to convert, both array must be large enough\r
1317                 \param dP Pointer to destination\r
1318                 \param dF Color format of destination\r
1319                 */\r
1320                 virtual void convertColor(const void* sP, ECOLOR_FORMAT sF, s32 sN,\r
1321                                 void* dP, ECOLOR_FORMAT dF) const =0;\r
1322 \r
1323                 //! Check if the driver supports creating textures with the given color format\r
1324                 /**     \return True if the format is available, false if not. */\r
1325                 virtual bool queryTextureFormat(ECOLOR_FORMAT format) const = 0;\r
1326 \r
1327                 //! Used by some SceneNodes to check if a material should be rendered in the transparent render pass\r
1328                 virtual bool needsTransparentRenderPass(const irr::video::SMaterial& material) const = 0;\r
1329         };\r
1330 \r
1331 } // end namespace video\r
1332 } // end namespace irr\r
1333 \r
1334 \r
1335 #endif\r