Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joshua Ashton
mesa
Commits
1e4581e0
Commit
1e4581e0
authored
Sep 01, 2021
by
Marek Olšák
Browse files
driconf: remove leftover code for allow_incorrect_primitive_id
parent
c28e24de
Pipeline
#399111
waiting for manual action with stages
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/gallium/auxiliary/pipe-loader/driinfo_gallium.h
View file @
1e4581e0
...
...
@@ -31,7 +31,6 @@ DRI_CONF_SECTION_DEBUG
DRI_CONF_GLSL_CORRECT_DERIVATIVES_AFTER_DISCARD
(
false
)
DRI_CONF_GLSL_IGNORE_WRITE_TO_READONLY_VAR
(
false
)
DRI_CONF_ALLOW_DRAW_OUT_OF_ORDER
(
false
)
DRI_CONF_ALLOW_INCORRECT_PRIMITIVE_ID
(
false
)
DRI_CONF_FORCE_COMPAT_PROFILE
(
false
)
DRI_CONF_FORCE_GL_NAMES_REUSE
(
false
)
DRI_CONF_TRANSCODE_ETC
(
false
)
...
...
src/gallium/auxiliary/util/u_driconf.c
View file @
1e4581e0
...
...
@@ -57,7 +57,6 @@ u_driconf_fill_st_options(struct st_config_options *options,
query_bool_option
(
force_glsl_abs_sqrt
);
query_bool_option
(
allow_glsl_cross_stage_interpolation_mismatch
);
query_bool_option
(
allow_draw_out_of_order
);
query_bool_option
(
allow_incorrect_primitive_id
);
query_bool_option
(
ignore_map_unsynchronized
);
query_bool_option
(
force_gl_names_reuse
);
query_bool_option
(
transcode_etc
);
...
...
src/gallium/include/frontend/api.h
View file @
1e4581e0
...
...
@@ -233,7 +233,6 @@ struct st_config_options
bool
force_glsl_abs_sqrt
;
bool
allow_glsl_cross_stage_interpolation_mismatch
;
bool
allow_draw_out_of_order
;
bool
allow_incorrect_primitive_id
;
bool
ignore_map_unsynchronized
;
bool
force_integer_tex_nearest
;
bool
force_gl_names_reuse
;
...
...
src/util/00-mesa-defaults.conf
View file @
1e4581e0
...
...
@@ -306,8 +306,6 @@ TODO: document the other workarounds.
<
option
name
=
"force_gl_vendor"
value
=
"NVIDIA Corporation"
/>
<!--
creo
-
02
doesn
'
t
enable
GL_EXT_shader_image_load_store
in
GLSL
-->
<
option
name
=
"force_glsl_extensions_warn"
value
=
"true"
/>
<!--
Enable
draw
merging
inside
display
list
for
snx
-
03
-->
<
option
name
=
"allow_incorrect_primitive_id"
value
=
"true"
/>
<
option
name
=
"allow_draw_out_of_order"
value
=
"true"
/>
<
option
name
=
"mesa_glthread"
value
=
"true"
/>
<
option
name
=
"mesa_no_error"
value
=
"true"
/>
...
...
src/util/driconf.h
View file @
1e4581e0
...
...
@@ -216,10 +216,6 @@
DRI_CONF_OPT_B(allow_draw_out_of_order, def, \
"Allow out-of-order draw optimizations. Set when Z fighting doesn't have to be accurate.")
#define DRI_CONF_ALLOW_INCORRECT_PRIMITIVE_ID(def) \
DRI_CONF_OPT_B(allow_incorrect_primitive_id, def, \
"Allows drawing display list using merged draws (might cause invalid gl_PrimitiveID values).")
#define DRI_CONF_FORCE_GL_VENDOR() \
DRI_CONF_OPT_S_NODEF(force_gl_vendor, "Override GPU vendor string.")
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment