diff options
author | Eric Anholt <[email protected]> | 2018-07-26 16:43:28 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-07-27 12:56:36 -0700 |
commit | 9bf9a6d6a1ddba267cbb0a85cceea44e19a885e8 (patch) | |
tree | dd82b382f4b7a82c546f7dc307c153900457b519 /src/gallium/drivers/v3d | |
parent | 5a1cc3861c33ecc6cda41e963984d5a4340e954d (diff) |
v3d: Drop the VG support from the XML.
This reflects a change on the HW/closed SW side to drop this unused HW.
With it dropped on their side, the CLIF parser no longer expects to find
VG fields.
Diffstat (limited to 'src/gallium/drivers/v3d')
-rw-r--r-- | src/gallium/drivers/v3d/v3dx_rcl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/v3d/v3dx_rcl.c b/src/gallium/drivers/v3d/v3dx_rcl.c index b8200a4bc8b..d795591c01a 100644 --- a/src/gallium/drivers/v3d/v3dx_rcl.c +++ b/src/gallium/drivers/v3d/v3dx_rcl.c @@ -418,7 +418,6 @@ v3d_rcl_emit_generic_per_tile_list(struct v3d_job *job, int last_cbuf) * is triangles, so make sure that's the case. */ cl_emit(cl, PRIMITIVE_LIST_FORMAT, fmt) { - fmt.data_type = LIST_INDEXED; fmt.primitive_type = LIST_TRIANGLES; } @@ -663,7 +662,7 @@ v3dX(emit_rcl)(struct v3d_job *job) cl_emit(&job->rcl, TILE_RENDERING_MODE_CONFIGURATION_Z_STENCIL_CLEAR_VALUES, clear) { clear.z_clear_value = job->clear_z; - clear.stencil_vg_mask_clear_value = job->clear_s; + clear.stencil_clear_value = job->clear_s; }; /* Always set initial block size before the first branch, which needs |