diff options
author | Lionel Landwerlin <[email protected]> | 2016-12-12 12:30:26 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2016-12-13 16:27:33 +0000 |
commit | 9854a3ba8bd34b36737753f2ec7c61b06d64da4c (patch) | |
tree | ae4a9849ec5140ba05dc2a2a29fc14da0f3cb20f /src/mesa/main/enable.c | |
parent | da3389a331b07d3e58aa9ad8df6864cc04f877e4 (diff) |
main: use new driver flag for conservative rasterization state
Suggested by Marek.
v2: Use new driver flag (Marek)
v3: Fix i965 comments (Lionel)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa/main/enable.c')
-rw-r--r-- | src/mesa/main/enable.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/enable.c b/src/mesa/main/enable.c index c9f10abb383..669fe167a51 100644 --- a/src/mesa/main/enable.c +++ b/src/mesa/main/enable.c @@ -444,7 +444,9 @@ _mesa_set_enable(struct gl_context *ctx, GLenum cap, GLboolean state) goto invalid_enum_error; if (ctx->IntelConservativeRasterization == state) return; - FLUSH_VERTICES(ctx, _NEW_POLYGON); + FLUSH_VERTICES(ctx, 0); + ctx->NewDriverState |= + ctx->DriverFlags.NewIntelConservativeRasterization; ctx->IntelConservativeRasterization = state; break; case GL_COLOR_LOGIC_OP: |