diff options
author | Brian Paul <[email protected]> | 2014-05-05 10:17:48 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-05-07 11:32:11 -0600 |
commit | baec25635df21884755d05451d8b577841a77cfc (patch) | |
tree | a0a8dbc6c5243c1a3810cff807d50aaa73206284 /src/gallium/auxiliary/gallivm/lp_bld_limits.h | |
parent | ed8bfaba52858cfe71c9b60ca150476ba38b0500 (diff) |
gallivm: add PIPE_SHADER_CAP_PREFERRED_IR switch case, remove default
Return PIPE_SHADER_IR_TGSI for the PIPE_SHADER_CAP_PREFERRED_IR query.
Remove default switch case so we learn of missing switch cases at
compile time.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_limits.h')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_limits.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_limits.h b/src/gallium/auxiliary/gallivm/lp_bld_limits.h index 87be3511d94..6cb09490bc8 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_limits.h +++ b/src/gallium/auxiliary/gallivm/lp_bld_limits.h @@ -122,11 +122,15 @@ gallivm_get_shader_param(enum pipe_shader_cap param) return PIPE_MAX_SAMPLERS; case PIPE_SHADER_CAP_MAX_SAMPLER_VIEWS: return PIPE_MAX_SHADER_SAMPLER_VIEWS; + case PIPE_SHADER_CAP_PREFERRED_IR: + return PIPE_SHADER_IR_TGSI; case PIPE_SHADER_CAP_TGSI_SQRT_SUPPORTED: return 1; - default: - return 0; } + /* if we get here, we missed a shader cap above (and should have seen + * a compiler warning.) + */ + return 0; } |