diff options
author | Marek Olšák <[email protected]> | 2017-06-09 21:42:12 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-06-22 01:51:02 +0200 |
commit | e7a091936fb6fd578c6ced9baa38b306b638a11b (patch) | |
tree | 538a1b3fa377fbb299169879a064f5534a79c5d1 /src/mesa/main/polygon.c | |
parent | c19b08b079da566d5c377c1ff4fe0ae6ac980003 (diff) |
mesa: replace ctx->Polygon._FrontBit with a helper function
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/polygon.c')
-rw-r--r-- | src/mesa/main/polygon.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c index 1bb7190bc24..e509fe4d989 100644 --- a/src/mesa/main/polygon.c +++ b/src/mesa/main/polygon.c @@ -318,7 +318,6 @@ void _mesa_init_polygon( struct gl_context * ctx ) ctx->Polygon.CullFlag = GL_FALSE; ctx->Polygon.CullFaceMode = GL_BACK; ctx->Polygon.FrontFace = GL_CCW; - ctx->Polygon._FrontBit = 0; ctx->Polygon.FrontMode = GL_FILL; ctx->Polygon.BackMode = GL_FILL; ctx->Polygon.SmoothFlag = GL_FALSE; |