summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-04-18 23:40:01 +0200
committerMarek Olšák <maraeo@gmail.com>2010-04-19 00:36:20 +0200
commit394803b2cd7fd9d4c0a394eb6998ccafec19bcd3 (patch)
tree5b7712fc77b51fa3982a12caa45af2aa3e4d8521 /src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h
parente53a1576dde7ba9d22b48a8e4b5d41b71411ec1d (diff)
r300/compiler: lower CEIL
Diffstat (limited to 'src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h')
-rw-r--r--src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h b/src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h
index 1c9b34df78..87a2e23084 100644
--- a/src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h
+++ b/src/mesa/drivers/dri/r300/compiler/radeon_opcodes.h
@@ -47,6 +47,9 @@ typedef enum {
* dst.x = floor(src.x), where dst must be an address register */
RC_OPCODE_ARL,
+ /** vec4 instruction: dst.c = ceil(src0.c) */
+ RC_OPCODE_CEIL,
+
/** vec4 instruction: dst.c = src0.c < 0.0 ? src1.c : src2.c */
RC_OPCODE_CMP,