intel/compiler: remove unused field from fs_thread_payload
authorMarcin Ślusarz <marcin.slusarz@intel.com>
Fri, 27 Jan 2023 15:57:15 +0000 (16:57 +0100)
committerMarge Bot <emma+marge@anholt.net>
Thu, 23 Feb 2023 08:04:24 +0000 (08:04 +0000)
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20957>

src/intel/compiler/brw_fs.h
src/intel/compiler/brw_fs_thread_payload.cpp

index 454b587..56b50bd 100644 (file)
@@ -141,7 +141,6 @@ struct fs_thread_payload : public thread_payload {
    uint8_t sample_mask_in_reg[2];
    uint8_t depth_w_coef_reg[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 {
index b28f743..8b78114 100644 (file)
@@ -356,8 +356,7 @@ fs_thread_payload::fs_thread_payload(const fs_visitor &v,
     sample_pos_reg(),
     sample_mask_in_reg(),
     depth_w_coef_reg(),
-    barycentric_coord_reg(),
-    local_invocation_id_reg()
+    barycentric_coord_reg()
 {
    if (v.devinfo->ver >= 6)
       setup_fs_payload_gfx6(*this, v, source_depth_to_render_target);