mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
anv: Delete anv_graphics_pipeline_create_info::disable_viewport
There are no users of this field. Signed-off-by: Nanley Chery <nanley.g.chery@intel.com> Reviewed-by: Kristian Høgsberg Kristensen <kristian.h.kristensen@intel.com>
This commit is contained in:
parent
cff0f6b027
commit
9f72466e9f
5 changed files with 0 additions and 5 deletions
|
|
@ -669,7 +669,6 @@ anv_device_init_meta_blit_state(struct anv_device *device)
|
|||
const struct anv_graphics_pipeline_create_info anv_pipeline_info = {
|
||||
.color_attachment_count = -1,
|
||||
.use_repclear = false,
|
||||
.disable_viewport = true,
|
||||
.disable_scissor = true,
|
||||
.disable_vs = true,
|
||||
.use_rectlist = true
|
||||
|
|
|
|||
|
|
@ -1190,7 +1190,6 @@ blit2d_init_pipeline(struct anv_device *device,
|
|||
const struct anv_graphics_pipeline_create_info anv_pipeline_info = {
|
||||
.color_attachment_count = -1,
|
||||
.use_repclear = false,
|
||||
.disable_viewport = true,
|
||||
.disable_scissor = true,
|
||||
.disable_vs = true,
|
||||
.use_rectlist = true
|
||||
|
|
|
|||
|
|
@ -211,7 +211,6 @@ create_pipeline(struct anv_device *device,
|
|||
&(struct anv_graphics_pipeline_create_info) {
|
||||
.color_attachment_count = MAX_RTS,
|
||||
.use_repclear = use_repclear,
|
||||
.disable_viewport = true,
|
||||
.disable_scissor = true,
|
||||
.disable_vs = true,
|
||||
.use_rectlist = true
|
||||
|
|
|
|||
|
|
@ -343,7 +343,6 @@ create_pipeline(struct anv_device *device,
|
|||
&(struct anv_graphics_pipeline_create_info) {
|
||||
.color_attachment_count = -1,
|
||||
.use_repclear = false,
|
||||
.disable_viewport = true,
|
||||
.disable_scissor = true,
|
||||
.disable_vs = true,
|
||||
.use_rectlist = true
|
||||
|
|
|
|||
|
|
@ -1488,7 +1488,6 @@ struct anv_graphics_pipeline_create_info {
|
|||
int8_t color_attachment_count;
|
||||
|
||||
bool use_repclear;
|
||||
bool disable_viewport;
|
||||
bool disable_scissor;
|
||||
bool disable_vs;
|
||||
bool use_rectlist;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue