summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorErik Faye-Lund <erik.faye-lund@collabora.com>2021-08-23 14:25:07 +0200
committerMarge Bot <eric+marge@anholt.net>2021-08-25 19:37:16 +0000
commit7b0bda2e5569edb88ec0a400d91779c0c1a58d0f (patch)
tree2b95093be8d66ccf59091b939a7419beb982ec6b /src/gallium/include
parent526f7d779071e432a1205d62acd81d8d7f0c2f47 (diff)
gallium/tgsi: rip out cylindrical wrap support
We never enable this feature, so let's rip it out completely. Acked-by: Roland Scheidegger <sroland@vmware.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12505>
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/pipe/p_shader_tokens.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h
index b41d86ef3e3..73c9218c1f5 100644
--- a/src/gallium/include/pipe/p_shader_tokens.h
+++ b/src/gallium/include/pipe/p_shader_tokens.h
@@ -112,11 +112,6 @@ enum tgsi_interpolate_loc {
TGSI_INTERPOLATE_LOC_COUNT,
};
-#define TGSI_CYLINDRICAL_WRAP_X (1 << 0)
-#define TGSI_CYLINDRICAL_WRAP_Y (1 << 1)
-#define TGSI_CYLINDRICAL_WRAP_Z (1 << 2)
-#define TGSI_CYLINDRICAL_WRAP_W (1 << 3)
-
enum tgsi_memory_type {
TGSI_MEMORY_TYPE_GLOBAL, /* OpenCL global */
TGSI_MEMORY_TYPE_SHARED, /* OpenCL local / GLSL shared */
@@ -158,8 +153,7 @@ struct tgsi_declaration_interp
{
unsigned Interpolate : 4; /**< one of TGSI_INTERPOLATE_x */
unsigned Location : 2; /**< one of TGSI_INTERPOLATE_LOC_x */
- unsigned CylindricalWrap:4; /**< TGSI_CYLINDRICAL_WRAP_x flags */
- unsigned Padding : 22;
+ unsigned Padding : 26;
};
enum tgsi_semantic {