mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 14:28:05 +02:00
mesa: fix broken glGet*(GL_POLYGON_MODE) query
This reverts part of the patch which introduced the GLenum16 change.
Fixes a conform regression found by Roland.
Fixes: f96a69f916 ("mesa: replace GLenum with GLenum16 in
common structures (v4)")
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
parent
49c61d8b84
commit
1ea9efd2f8
2 changed files with 3 additions and 3 deletions
|
|
@ -743,7 +743,7 @@ descriptor=[
|
|||
[ "PIXEL_MAP_R_TO_R_SIZE", "CONTEXT_INT(PixelMaps.RtoR.Size), NO_EXTRA" ],
|
||||
[ "PIXEL_MAP_S_TO_S_SIZE", "CONTEXT_INT(PixelMaps.StoS.Size), NO_EXTRA" ],
|
||||
[ "POINT_SIZE_GRANULARITY", "CONTEXT_FLOAT(Const.PointSizeGranularity), NO_EXTRA" ],
|
||||
[ "POLYGON_MODE", "CONTEXT_ENUM16(Polygon.FrontMode), NO_EXTRA" ],
|
||||
[ "POLYGON_MODE", "CONTEXT_ENUM2(Polygon.FrontMode), NO_EXTRA" ],
|
||||
[ "POLYGON_OFFSET_BIAS_EXT", "CONTEXT_FLOAT(Polygon.OffsetUnits), NO_EXTRA" ],
|
||||
[ "POLYGON_OFFSET_POINT", "CONTEXT_BOOL(Polygon.OffsetPoint), NO_EXTRA" ],
|
||||
[ "POLYGON_OFFSET_LINE", "CONTEXT_BOOL(Polygon.OffsetLine), NO_EXTRA" ],
|
||||
|
|
|
|||
|
|
@ -843,8 +843,8 @@ struct gl_point_attrib
|
|||
struct gl_polygon_attrib
|
||||
{
|
||||
GLenum16 FrontFace; /**< Either GL_CW or GL_CCW */
|
||||
GLenum16 FrontMode; /**< Either GL_POINT, GL_LINE or GL_FILL */
|
||||
GLenum16 BackMode; /**< Either GL_POINT, GL_LINE or GL_FILL */
|
||||
GLenum FrontMode; /**< Either GL_POINT, GL_LINE or GL_FILL */
|
||||
GLenum BackMode; /**< Either GL_POINT, GL_LINE or GL_FILL */
|
||||
GLboolean CullFlag; /**< Culling on/off flag */
|
||||
GLboolean SmoothFlag; /**< True if GL_POLYGON_SMOOTH is enabled */
|
||||
GLboolean StippleFlag; /**< True if GL_POLYGON_STIPPLE is enabled */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue