mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 04:50:11 +01:00
intel/compiler: remove unused field from fs_thread_payload
Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20957>
This commit is contained in:
parent
9b4eb73907
commit
512126b26d
2 changed files with 1 additions and 3 deletions
|
|
@ -141,7 +141,6 @@ struct fs_thread_payload : public thread_payload {
|
||||||
uint8_t sample_mask_in_reg[2];
|
uint8_t sample_mask_in_reg[2];
|
||||||
uint8_t depth_w_coef_reg[2];
|
uint8_t depth_w_coef_reg[2];
|
||||||
uint8_t barycentric_coord_reg[BRW_BARYCENTRIC_MODE_COUNT][2];
|
uint8_t barycentric_coord_reg[BRW_BARYCENTRIC_MODE_COUNT][2];
|
||||||
uint8_t local_invocation_id_reg[2];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct cs_thread_payload : public thread_payload {
|
struct cs_thread_payload : public thread_payload {
|
||||||
|
|
|
||||||
|
|
@ -356,8 +356,7 @@ fs_thread_payload::fs_thread_payload(const fs_visitor &v,
|
||||||
sample_pos_reg(),
|
sample_pos_reg(),
|
||||||
sample_mask_in_reg(),
|
sample_mask_in_reg(),
|
||||||
depth_w_coef_reg(),
|
depth_w_coef_reg(),
|
||||||
barycentric_coord_reg(),
|
barycentric_coord_reg()
|
||||||
local_invocation_id_reg()
|
|
||||||
{
|
{
|
||||||
if (v.devinfo->ver >= 6)
|
if (v.devinfo->ver >= 6)
|
||||||
setup_fs_payload_gfx6(*this, v, source_depth_to_render_target);
|
setup_fs_payload_gfx6(*this, v, source_depth_to_render_target);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue