Merge branch 'experiment' of git+ssh://repo.or.cz/srv/git/glgame
[glgame.git] / src / gl_functions.h
blobc208dcd07c2eb436f9e78e1aaf35f7f0c274dbff
1 #ifndef HEADER_FILE_H_
2 #define HEADER_FILE_H_
4 #include <SDL/SDL_opengl.h>
6 #include "colors.h"
7 #include "math/vector2d.h"
9 void gl_glass_enable(); // прозрачность "черное стекло"
10 void gl_glass_disable();
13 void gl_white_glass_enable(); // прозрачность "белое стекло"
14 void gl_white_glass_disable();
16 void glColor ( Color c );
17 void glVertex( Vector2D& v );
18 void glTranslate( Vector2D& coord );
20 void DisplayCross( Scalar size );
21 void DisplayCross( Vector2D coord, Scalar size );
23 #endif