diff options
author | Vadim Girlin <[email protected]> | 2013-04-19 01:04:51 +0400 |
---|---|---|
committer | Vadim Girlin <[email protected]> | 2013-04-19 01:05:03 +0400 |
commit | f732036f12d67a96f546c11236fa635b3eda6e9c (patch) | |
tree | 42c7cfbc1f9d5902b9650b418aa25bae6e97cfdd /src/gallium/state_trackers/dri/common/dri_context.c | |
parent | b72ff373fb105fbf75603369afe4897b4de06892 (diff) |
gallium: handle drirc disable_glsl_line_continuations option
NOTE: This is a candidate for the 9.1 branch
Signed-off-by: Vadim Girlin <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/dri/common/dri_context.c')
-rw-r--r-- | src/gallium/state_trackers/dri/common/dri_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/dri/common/dri_context.c b/src/gallium/state_trackers/dri/common/dri_context.c index 49cd794c661..58a710d0d14 100644 --- a/src/gallium/state_trackers/dri/common/dri_context.c +++ b/src/gallium/state_trackers/dri/common/dri_context.c @@ -54,6 +54,8 @@ static void dri_fill_st_options(struct st_config_options *options, { options->force_glsl_extensions_warn = driQueryOptionb(optionCache, "force_glsl_extensions_warn"); + options->disable_glsl_line_continuations = + driQueryOptionb(optionCache, "disable_glsl_line_continuations"); } GLboolean |