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 | |
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')
-rw-r--r-- | src/mesa/main/enable.c | 4 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 5 |
2 files changed, 8 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: diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 71bd89e510d..36d48e2115d 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -4222,6 +4222,11 @@ struct gl_driver_flags * gl_context::TessCtrlProgram::patch_default_* */ uint64_t NewDefaultTessLevels; + + /** + * gl_context::IntelConservativeRasterization + */ + uint64_t NewIntelConservativeRasterization; }; struct gl_uniform_buffer_binding |