mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 18:10:23 +01:00
st/mesa,gallium: add a workaround for Unigine Heaven 4.0 and Valley 1.0
Most (all?) Unigine shaders fail to compile without this if sample shading is advertised. This is, of course, Unigine developers' fault. Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
b0ff18bd34
commit
3a86ca54df
6 changed files with 29 additions and 3 deletions
|
|
@ -245,6 +245,7 @@ struct st_config_options
|
|||
boolean force_glsl_extensions_warn;
|
||||
unsigned force_glsl_version;
|
||||
boolean force_s3tc_enable;
|
||||
boolean allow_glsl_extension_directive_midshader;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -55,6 +55,8 @@ dri_fill_st_options(struct st_config_options *options,
|
|||
driQueryOptioni(optionCache, "force_glsl_version");
|
||||
options->force_s3tc_enable =
|
||||
driQueryOptionb(optionCache, "force_s3tc_enable");
|
||||
options->allow_glsl_extension_directive_midshader =
|
||||
driQueryOptionb(optionCache, "allow_glsl_extension_directive_midshader");
|
||||
}
|
||||
|
||||
GLboolean
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@ const __DRIconfigOptionsExtension gallium_config_options = {
|
|||
DRI_CONF_DISABLE_BLEND_FUNC_EXTENDED("false")
|
||||
DRI_CONF_DISABLE_SHADER_BIT_ENCODING("false")
|
||||
DRI_CONF_FORCE_GLSL_VERSION(0)
|
||||
DRI_CONF_ALLOW_GLSL_EXTENSION_DIRECTIVE_MIDSHADER("false")
|
||||
DRI_CONF_SECTION_END
|
||||
|
||||
DRI_CONF_SECTION_MISCELLANEOUS
|
||||
|
|
|
|||
|
|
@ -11,17 +11,21 @@ Application bugs worked around in this file:
|
|||
is still 1.10.
|
||||
|
||||
* Unigine Heaven 3.0 with ARB_texture_multisample uses a "ivec4 * vec4"
|
||||
expression, which fails to compile with GLSL 1.10.
|
||||
expression, which is illegal in GLSL 1.10.
|
||||
Adding "#version 130" fixes this.
|
||||
|
||||
* Unigine Heaven 3.0 with ARB_shader_bit_encoding uses the uint keyword, which
|
||||
fails to compile with GLSL 1.10.
|
||||
is illegal in GLSL 1.10.
|
||||
Adding "#version 130" fixes this.
|
||||
|
||||
* Unigine Heaven 3.0 with ARB_shader_bit_encoding uses a "uint & int"
|
||||
expression, which fails (and should fail) to compile with any GLSL version.
|
||||
expression, which is illegal in any GLSL version.
|
||||
Disabling ARB_shader_bit_encoding fixes this.
|
||||
|
||||
* If ARB_sample_shading is supported, Unigine Heaven 4.0 and Valley 1.0 uses
|
||||
an #extension directive in the middle of its shaders, which is illegal
|
||||
in GLSL.
|
||||
|
||||
TODO: document the other workarounds.
|
||||
|
||||
-->
|
||||
|
|
@ -45,6 +49,7 @@ TODO: document the other workarounds.
|
|||
<option name="disable_blend_func_extended" value="true" />
|
||||
<option name="force_glsl_version" value="130" />
|
||||
<option name="disable_shader_bit_encoding" value="true" />
|
||||
<option name="allow_glsl_extension_directive_midshader" value="true" />
|
||||
</application>
|
||||
|
||||
<application name="Unigine Heaven (64-bit)" executable="heaven_x64">
|
||||
|
|
@ -52,6 +57,15 @@ TODO: document the other workarounds.
|
|||
<option name="disable_blend_func_extended" value="true" />
|
||||
<option name="force_glsl_version" value="130" />
|
||||
<option name="disable_shader_bit_encoding" value="true" />
|
||||
<option name="allow_glsl_extension_directive_midshader" value="true" />
|
||||
</application>
|
||||
|
||||
<application name="Unigine Valley (32-bit)" executable="valley_x86">
|
||||
<option name="allow_glsl_extension_directive_midshader" value="true" />
|
||||
</application>
|
||||
|
||||
<application name="Unigine Valley (64-bit)" executable="valley_x64">
|
||||
<option name="allow_glsl_extension_directive_midshader" value="true" />
|
||||
</application>
|
||||
|
||||
<application name="Unigine OilRush (32-bit)" executable="OilRush_x86">
|
||||
|
|
|
|||
|
|
@ -105,6 +105,11 @@ DRI_CONF_OPT_BEGIN_V(force_glsl_version, int, def, "0:999") \
|
|||
DRI_CONF_DESC(en,gettext("Force a default GLSL version for shaders that lack an explicit #version line")) \
|
||||
DRI_CONF_OPT_END
|
||||
|
||||
#define DRI_CONF_ALLOW_GLSL_EXTENSION_DIRECTIVE_MIDSHADER(def) \
|
||||
DRI_CONF_OPT_BEGIN_B(allow_glsl_extension_directive_midshader, def) \
|
||||
DRI_CONF_DESC(en,gettext("Allow GLSL #extension directives in the middle of shaders")) \
|
||||
DRI_CONF_OPT_END
|
||||
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -772,6 +772,9 @@ void st_init_extensions(struct st_context *st)
|
|||
if (st->options.disable_glsl_line_continuations)
|
||||
ctx->Const.DisableGLSLLineContinuations = 1;
|
||||
|
||||
if (st->options.allow_glsl_extension_directive_midshader)
|
||||
ctx->Const.AllowGLSLExtensionDirectiveMidShader = GL_TRUE;
|
||||
|
||||
ctx->Const.MinMapBufferAlignment =
|
||||
screen->get_param(screen, PIPE_CAP_MIN_MAP_BUFFER_ALIGNMENT);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue