diff options
author | Marek Olšák <[email protected]> | 2014-12-07 18:49:31 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-12-10 21:59:36 +0100 |
commit | 946eb08e6a95510596471168285a20bbe1554bb3 (patch) | |
tree | ca4964ca5395ebed3eefbfbce06cfe831f541409 /src/gallium/auxiliary | |
parent | 0a60ebe30c186daf1fbe569e07bfe2e75f765824 (diff) |
tgsi: add tgsi_shader_info::writes_psize
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.c | 3 | ||||
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.c b/src/gallium/auxiliary/tgsi/tgsi_scan.c index a23bb4067aa..b6c88af3a9e 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.c +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.c @@ -238,6 +238,9 @@ tgsi_scan_shader(const struct tgsi_token *tokens, else if (semName == TGSI_SEMANTIC_LAYER) { info->writes_layer = TRUE; } + else if (semName == TGSI_SEMANTIC_PSIZE) { + info->writes_psize = TRUE; + } } if (procType == TGSI_PROCESSOR_FRAGMENT) { diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.h b/src/gallium/auxiliary/tgsi/tgsi_scan.h index b02b018b633..b50b650c801 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.h +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.h @@ -76,6 +76,7 @@ struct tgsi_shader_info boolean uses_vertexid; boolean uses_primid; boolean uses_frontface; + boolean writes_psize; boolean writes_viewport_index; boolean writes_layer; boolean is_msaa_sampler[PIPE_MAX_SAMPLERS]; |