diff options
author | Christoph Bumiller <[email protected]> | 2011-08-27 21:00:39 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2011-08-30 13:55:07 +0200 |
commit | eabb9b0fd9d3a8b757c54465618b0d050ae0852f (patch) | |
tree | 0488aead090bf595aa8b6ab54f0e9b9a7c8e795e /src/gallium/drivers/nv50/nv50_pc.c | |
parent | 222b3ea653e5525a4afa57e6a2353335953012d4 (diff) |
nv50: handle TGSI_OPCODE_ROUND
Will round to nearest-even.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_pc.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_pc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_pc.c b/src/gallium/drivers/nv50/nv50_pc.c index 7900bf811df..9137f871f5a 100644 --- a/src/gallium/drivers/nv50/nv50_pc.c +++ b/src/gallium/drivers/nv50/nv50_pc.c @@ -102,6 +102,7 @@ nv50_nvi_can_load(struct nv_instruction *nvi, int s, struct nv_value *value) case NV_OP_FLOOR: case NV_OP_TRUNC: case NV_OP_CVT: + case NV_OP_ROUND: case NV_OP_NEG: case NV_OP_MAD: case NV_OP_MUL: |