1 /* c-irrlicht --- C bindings for Irrlicht Engine
3 Copyright (C) 2019 Javier Sancho <jsf@jsancho.org>
5 This file is part of c-irrlicht.
7 c-irrlicht is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as
9 published by the Free Software Foundation; either version 3 of the
10 License, or (at your option) any later version.
12 c-irrlicht is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with guile-irrlicht. If not, see
19 <http://www.gnu.org/licenses/>.
22 #ifndef __C_I_VIDEO_DRIVER_H_INCLUDED__
23 #define __C_I_VIDEO_DRIVER_H_INCLUDED__
28 #include "SExposedVideoData.h"
29 #include "SMaterial.h"
32 //! enumeration for geometry transformation states
35 //! View transformation
36 irr_video_ETS_VIEW = 0,
37 //! World transformation
39 //! Projection transformation
40 irr_video_ETS_PROJECTION,
41 //! Texture transformation
42 irr_video_ETS_TEXTURE_0,
43 //! Texture transformation
44 irr_video_ETS_TEXTURE_1,
45 //! Texture transformation
46 irr_video_ETS_TEXTURE_2,
47 //! Texture transformation
48 irr_video_ETS_TEXTURE_3,
49 #if _C_IRR_MATERIAL_MAX_TEXTURES_>4
50 //! Texture transformation
51 irr_video_ETS_TEXTURE_4,
52 #if _C_IRR_MATERIAL_MAX_TEXTURES_>5
53 //! Texture transformation
54 irr_video_ETS_TEXTURE_5,
55 #if _C_IRR_MATERIAL_MAX_TEXTURES_>6
56 //! Texture transformation
57 irr_video_ETS_TEXTURE_6,
58 #if _C_IRR_MATERIAL_MAX_TEXTURES_>7
59 //! Texture transformation
60 irr_video_ETS_TEXTURE_7,
67 } irr_video_E_TRANSFORMATION_STATE;
70 typedef void irr_video_IVideoDriver;
77 irr_video_beginScene(irr_video_IVideoDriver* driver,
80 const irr_video_SColor* color,
81 irr_video_SExposedVideoData* videoData,
82 const irr_core_rect_s32* sourceRect);
85 irr_video_endScene(irr_video_IVideoDriver* driver);
88 irr_video_getFPS(irr_video_IVideoDriver* driver);
91 irr_video_getName(irr_video_IVideoDriver* driver);
94 irr_video_getTexture(irr_video_IVideoDriver* driver,
95 const char* filename);
98 irr_video_setMaterial(irr_video_IVideoDriver* driver,
99 const irr_video_SMaterial material);
102 irr_video_setTransform(irr_video_IVideoDriver* driver,
103 irr_video_E_TRANSFORMATION_STATE state,
104 irr_core_matrix4* mat);