diff options
author | Marek Olšák <[email protected]> | 2013-07-30 22:29:16 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-07-30 23:31:23 +0200 |
commit | 2acc27cc6de5cae395d19017daf86ddd8de704cf (patch) | |
tree | 44ae11f723f56d0a02b61793214bb1ca99c78ac7 /src/gallium/include/state_tracker | |
parent | 71e0b5d688e8442c4c19d905db84caad94314d5e (diff) |
st/dri: support the driconf option disable_blend_func_extended
This is needed for Unigine.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/include/state_tracker')
-rw-r--r-- | src/gallium/include/state_tracker/st_api.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/include/state_tracker/st_api.h b/src/gallium/include/state_tracker/st_api.h index 52c9dc0c3a4..fd6d04c4a3d 100644 --- a/src/gallium/include/state_tracker/st_api.h +++ b/src/gallium/include/state_tracker/st_api.h @@ -239,8 +239,9 @@ struct st_visual */ struct st_config_options { - boolean force_glsl_extensions_warn; - boolean disable_glsl_line_continuations; + boolean force_glsl_extensions_warn; + boolean disable_glsl_line_continuations; + boolean disable_blend_func_extended; }; /** |