i965: const a few structs and vars to avoid writing to them by accident
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
committed by
Kenneth Graunke
parent
760e0156df
commit
07d3966694
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user