]> git.localhorst.tv Git - blank.git/blob - src/graphics/Format.hpp
reorganize basic rendering functionality
[blank.git] / src / graphics / Format.hpp
1 #ifndef BLANK_GRAPHICS_FORMAT_HPP_
2 #define BLANK_GRAPHICS_FORMAT_HPP_
3
4 #include <SDL.h>
5 #include <GL/glew.h>
6
7
8 namespace blank {
9
10 struct Format {
11
12         GLenum format;
13         GLenum type;
14         GLenum internal;
15
16         void ReadPixelFormat(const SDL_PixelFormat &);
17
18 };
19
20 }
21
22 #endif