diff options
author | Brian Paul <[email protected]> | 2010-07-02 09:07:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-07-02 09:07:36 -0600 |
commit | e3c961de3696911d8ab1351e64bd6e904de103d0 (patch) | |
tree | 78949a012a77e7294b472fd86876253b241ba8f2 | |
parent | b6b9b17d27c570cc99ae339e595cf2f63ca5e8d7 (diff) |
main: change some GS field types, added comments
-rw-r--r-- | src/mesa/main/mtypes.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 30225274cd1..f2d2133fe7f 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1850,8 +1850,9 @@ struct gl_geometry_program struct gl_program Base; /**< base class */ GLint VerticesOut; - GLint InputType; - GLint OutputType; + GLenum InputType; /**< GL_POINTS, GL_LINES, GL_LINES_ADJACENCY_ARB, + GL_TRIANGLES, or GL_TRIANGLES_ADJACENCY_ARB */ + GLenum OutputType; /**< GL_POINTS, GL_LINE_STRIP or GL_TRIANGLE_STRIP */ }; |