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

Side by Side Diff: third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.h

Issue 552012: Added texture wrap demo.... (Closed) Base URL: svn://chrome-svn/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
Property Changes:
Added: svn:eol-style
+ LF
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 #ifndef TEXTURE_WRAP_H
12 #define TEXTURE_WRAP_H
13
14 #include "esUtil.h"
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif // __cplusplus
19
20 typedef struct
21 {
22 // Handle to a program object
23 GLuint programObject;
24
25 // Attribute locations
26 GLint positionLoc;
27 GLint texCoordLoc;
28
29 // Sampler location
30 GLint samplerLoc;
31
32 // Offset location
33 GLint offsetLoc;
34
35 // Texture handle
36 GLuint textureId;
37
38 // Vertex buffer object handle
39 GLuint vboIds[2];
40
41 } TWUserData;
42
43 extern int twInit ( ESContext *esContext );
44
45 extern void twDraw ( ESContext *esContext );
46
47 extern void twShutDown ( ESContext *esContext );
48
49 #ifdef __cplusplus
50 }
51 #endif // __cplusplus
52 #endif // TEXTURE_WRAP_H
OLDNEW
« no previous file with comments | « gpu/demos/texture_wrap/main.cc ('k') | third_party/gles2_book/Chapter_9/TextureWrap/TextureWrap.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698