diff options
author | Christoph Bumiller <[email protected]> | 2012-05-29 17:00:10 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2012-05-29 17:00:10 +0200 |
commit | 79eed0d2246e8e7be505784af0078507c712a02c (patch) | |
tree | 5be3e1f932e1b9497c76731f3f0f8748877100c2 /src/gallium/drivers/nvc0 | |
parent | 40c224a573f2b763046001e622aafca90f68c693 (diff) |
nvc0/ir: allow 64-bit constant loads on nve4
Looks like only 128-bit access doesn't work.
Diffstat (limited to 'src/gallium/drivers/nvc0')
-rw-r--r-- | src/gallium/drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp b/src/gallium/drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp index e4b9dc18311..0674f12704d 100644 --- a/src/gallium/drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp +++ b/src/gallium/drivers/nvc0/codegen/nv50_ir_target_nvc0.cpp @@ -448,7 +448,7 @@ TargetNVC0::isAccessSupported(DataFile file, DataType ty) const if (ty == TYPE_NONE) return false; if (file == FILE_MEMORY_CONST && getChipset() >= 0xe0) // wrong encoding ? - return typeSizeof(ty) <= 4; + return typeSizeof(ty) <= 8; if (ty == TYPE_B96) return (file == FILE_SHADER_INPUT) || (file == FILE_SHADER_OUTPUT); return true; |