From: Brian Paul Date: Fri, 2 Jul 2010 15:07:36 +0000 (-0600) Subject: main: change some GS field types, added comments X-Git-Tag: 062012170305~11558 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3c961de3696911d8ab1351e64bd6e904de103d0;p=profile%2Fivi%2Fmesa.git main: change some GS field types, added comments --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 3022527..f2d2133 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 */ };