[Mesa-dev] [PATCH mesa] i965: const a few structs and vars to avoid writing to them by accident
Eric Engestrom
eric.engestrom at imgtec.com
Mon Nov 27 13:46:43 UTC 2017
Signed-off-by: Eric Engestrom <eric.engestrom at imgtec.com>
---
This is why I like to const everything ;)
Feel free to push this patch when you land yours.
---
src/mesa/drivers/dri/i965/genX_state_upload.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/genX_state_upload.c b/src/mesa/drivers/dri/i965/genX_state_upload.c
index 112f48181b0312e42053..2c73d4f819e239df134b 100644
--- a/src/mesa/drivers/dri/i965/genX_state_upload.c
+++ b/src/mesa/drivers/dri/i965/genX_state_upload.c
@@ -4289,16 +4289,16 @@ static const struct brw_tracked_state genX(cs_state) = {
static void
genX(upload_raster)(struct brw_context *brw)
{
- struct gl_context *ctx = &brw->ctx;
+ const struct gl_context *ctx = &brw->ctx;
/* _NEW_BUFFERS */
- bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
+ const bool render_to_fbo = _mesa_is_user_fbo(ctx->DrawBuffer);
/* _NEW_POLYGON */
- struct gl_polygon_attrib *polygon = &ctx->Polygon;
+ const struct gl_polygon_attrib *polygon = &ctx->Polygon;
/* _NEW_POINT */
- struct gl_point_attrib *point = &ctx->Point;
+ const struct gl_point_attrib *point = &ctx->Point;
brw_batch_emit(brw, GENX(3DSTATE_RASTER), raster) {
if (brw->polygon_front_bit == render_to_fbo)
--
Cheers,
Eric
More information about the mesa-dev
mailing list