mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 15:38:09 +02:00
mesa: delete LowerCombinedClipCullDistance from consts
no longer used Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28601>
This commit is contained in:
parent
c9977f8de6
commit
cba1b03e86
2 changed files with 0 additions and 7 deletions
|
|
@ -314,10 +314,6 @@ struct gl_shader_compiler_options
|
|||
/** Driver-selectable options: */
|
||||
GLboolean EmitNoCont; /**< Emit CONT opcode? */
|
||||
GLboolean EmitNoMainReturn; /**< Emit CONT/RET opcodes? */
|
||||
GLboolean LowerCombinedClipCullDistance; /** Lower gl_ClipDistance and
|
||||
* gl_CullDistance together from
|
||||
* float[8] to vec4[2]
|
||||
**/
|
||||
GLbitfield LowerBuiltinVariablesXfb; /**< Which builtin variables should
|
||||
* be lowered for transform feedback
|
||||
**/
|
||||
|
|
|
|||
|
|
@ -353,9 +353,6 @@ void st_init_limits(struct pipe_screen *screen,
|
|||
can_ubo = false;
|
||||
}
|
||||
|
||||
if (!screen->get_param(screen, PIPE_CAP_NIR_COMPACT_ARRAYS))
|
||||
options->LowerCombinedClipCullDistance = true;
|
||||
|
||||
if (sh == PIPE_SHADER_VERTEX || sh == PIPE_SHADER_GEOMETRY) {
|
||||
if (screen->get_param(screen, PIPE_CAP_VIEWPORT_TRANSFORM_LOWERED))
|
||||
options->LowerBuiltinVariablesXfb |= VARYING_BIT_POS;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue