diff --git a/docs/gallium/screen.rst b/docs/gallium/screen.rst index b4e1deb2925..ecc64be38a9 100644 --- a/docs/gallium/screen.rst +++ b/docs/gallium/screen.rst @@ -422,8 +422,6 @@ Capability about the features and limits of the driver/GPU. * ``pipe_caps.doubles``: Whether double precision floating-point operations are supported. * ``pipe_caps.int64``: Whether 64-bit integer operations are supported. -* ``pipe_caps.tgsi_tex_txf_lz``: Whether TEX_LZ and TXF_LZ opcodes are - supported. * ``pipe_caps.shader_clock``: Whether the CLOCK opcode is supported. * ``pipe_caps.polygon_mode_fill_rectangle``: Whether the PIPE_POLYGON_MODE_FILL_RECTANGLE mode is supported for diff --git a/src/gallium/drivers/nouveau/nv30/nv30_screen.c b/src/gallium/drivers/nouveau/nv30/nv30_screen.c index a3f1b929194..90828787034 100644 --- a/src/gallium/drivers/nouveau/nv30/nv30_screen.c +++ b/src/gallium/drivers/nouveau/nv30/nv30_screen.c @@ -236,7 +236,6 @@ nv30_init_screen_caps(struct nv30_screen *screen) caps->legacy_math_rules = false; caps->doubles = false; caps->int64 = false; - caps->tgsi_tex_txf_lz = false; caps->shader_clock = false; caps->polygon_mode_fill_rectangle = false; caps->sparse_buffer_page_size = 0; diff --git a/src/gallium/drivers/nouveau/nv50/nv50_screen.c b/src/gallium/drivers/nouveau/nv50/nv50_screen.c index 09a898b4acf..3b6251247af 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_screen.c +++ b/src/gallium/drivers/nouveau/nv50/nv50_screen.c @@ -269,7 +269,6 @@ nv50_init_screen_caps(struct nv50_screen *screen) caps->cull_distance = true; caps->shader_array_components = true; caps->legacy_math_rules = true; - caps->tgsi_tex_txf_lz = false; caps->shader_clock = true; caps->can_bind_const_buffer_as_vertex = true; caps->clear_scissored = true; diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c index ff8477353cd..6b884910e71 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c @@ -318,7 +318,6 @@ nvc0_init_screen_caps(struct nvc0_screen *screen) caps->legacy_math_rules = true; caps->doubles = true; caps->int64 = true; - caps->tgsi_tex_txf_lz = false; caps->shader_clock = true; caps->compute = true; caps->can_bind_const_buffer_as_vertex = true; diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index 0e37ce32d08..1b1f0230b13 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -960,7 +960,6 @@ struct pipe_caps { bool fp16; bool doubles; bool int64; - bool tgsi_tex_txf_lz; bool shader_clock; bool shader_realtime_clock; bool polygon_mode_fill_rectangle;