OLD | NEW |
| (Empty) |
1 // | |
2 // Book: OpenGL(R) ES 2.0 Programming Guide | |
3 // Authors: Aaftab Munshi, Dan Ginsburg, Dave Shreiner | |
4 // ISBN-10: 0321502795 | |
5 // ISBN-13: 9780321502797 | |
6 // Publisher: Addison-Wesley Professional | |
7 // URLs: http://safari.informit.com/9780321563835 | |
8 // http://www.opengles-book.com | |
9 // | |
10 | |
11 // esUtil_win.h | |
12 // | |
13 // API-neutral interface for creating windows. Implementation needs to be pro
vided per-platform. | |
14 | |
15 #ifndef ESUTIL_WIN_H | |
16 #define ESUTIL_WIN_H | |
17 | |
18 #ifdef __cplusplus | |
19 extern "C" { | |
20 #endif // __cplusplus | |
21 | |
22 /// | |
23 // WinTGALoad() | |
24 // | |
25 // TGA loader win32 implementation | |
26 // | |
27 int WinTGALoad ( const char *fileName, char **buffer, int *width, int *height ); | |
28 | |
29 #ifdef __cplusplus | |
30 } | |
31 #endif // __cplusplus | |
32 | |
33 #endif // ESUTIL_WIN_H | |
OLD | NEW |