diff options
author | Timothy Arceri <[email protected]> | 2016-11-20 23:05:42 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-01-23 14:48:04 +1100 |
commit | fc707f570f918ab0defd33405c8c82f307196d17 (patch) | |
tree | 3f03a4e3416f8940ed09819ca0006e1535cb3dcd /src/mesa/drivers/dri/i965 | |
parent | f86d15ed94df59e4b3cdb4099d69cdd81f52fc27 (diff) |
mesa/glsl: set {clip,cull}_distance_array_size directly in gl_program
There are some line wrapping violations here but those lines will get
deleted in the following patch.
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.c b/src/mesa/drivers/dri/i965/brw_vs.c index 3bcd7c67ee6..a8225801858 100644 --- a/src/mesa/drivers/dri/i965/brw_vs.c +++ b/src/mesa/drivers/dri/i965/brw_vs.c @@ -294,7 +294,7 @@ brw_vs_populate_key(struct brw_context *brw, if (ctx->Transform.ClipPlanesEnabled != 0 && (ctx->API == API_OPENGL_COMPAT || ctx->API == API_OPENGLES) && - vp->program.ClipDistanceArraySize == 0) { + vp->program.info.clip_distance_array_size == 0) { key->nr_userclip_plane_consts = _mesa_logbase2(ctx->Transform.ClipPlanesEnabled) + 1; } |