Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(86)

Side by Side Diff: third_party/gles_book_examples/Common/Include/esUtil_win.h

Issue 543002: Renamed gles_book_examples to gles2_book to make it shorter and more correct.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698