summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi/tgsi_exec.h
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2014-07-25 17:03:33 -0400
committerIlia Mirkin <[email protected]>2015-02-19 19:32:49 -0500
commit899d779cb719f8401dc479a4f5b61dbe418b1a40 (patch)
tree8c49dcb2fbc5f791e28a63fa6f3e5dbdf5a85ef7 /src/gallium/auxiliary/tgsi/tgsi_exec.h
parent12dedca52303cf32ac06b8e40ff3cf07b58ed0bc (diff)
gallium: add a cap to enable double rounding opcodes
Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.h')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_exec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h
index 256cf725dbc..02ee4c726c0 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.h
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h
@@ -457,6 +457,8 @@ tgsi_exec_get_shader_param(enum pipe_shader_cap param)
return 1;
case PIPE_SHADER_CAP_DOUBLES:
return 1;
+ case PIPE_SHADER_CAP_TGSI_DROUND_SUPPORTED:
+ return 0;
}
/* if we get here, we missed a shader cap above (and should have seen
* a compiler warning.)