diff options
author | Vadim Girlin <[email protected]> | 2011-11-15 19:57:20 +0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2011-11-21 17:38:37 -0500 |
commit | 40864b85aa70b6bc523dbb9792449e6a3dfac4b2 (patch) | |
tree | 2d3dd189677b1ddf5e67f977a906571056b93ee9 /src/gallium/auxiliary/tgsi/tgsi_ureg.c | |
parent | 2e6402feb754dd6384ee27fe623a7f9fce66dcaf (diff) |
gallium: add PIPE_SHADER_CAP_OUTPUT_READ
It's intended to indicate whether the driver/hardware supports reading
of the values written into shader outputs.
Signed-off-by: Vadim Girlin <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_ureg.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/tgsi_ureg.c index cada435aee7..cd445a6daa6 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.c @@ -799,7 +799,6 @@ ureg_emit_src( struct ureg_program *ureg, unsigned n = 0; assert(src.File != TGSI_FILE_NULL); - assert(src.File != TGSI_FILE_OUTPUT); assert(src.File < TGSI_FILE_COUNT); out[n].value = 0; |