diff options
author | Zack Rusin <[email protected]> | 2013-04-23 23:36:40 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2013-04-26 23:05:45 -0400 |
commit | 3093ac6f4fe8a4e57bcc0e82adef98806ec1e0d4 (patch) | |
tree | ec26553d9c18e376d107b5ab47d6fab97ace465c | |
parent | 53d36d5fb09cda39c8d3646cbccbd343b34bfb54 (diff) |
tgsi/ureg: Add a function to return the number of outputs
We already hold the variable, just weren't providing access
to it.
Signed-off-by: Zack Rusin <[email protected]>
Reviewed-by: José Fonseca <[email protected]>
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.c | 9 | ||||
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_ureg.h | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.c b/src/gallium/auxiliary/tgsi/tgsi_ureg.c index 782f4495fa3..5a28b89b58e 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.c +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.c @@ -1767,6 +1767,15 @@ no_ureg: } +const unsigned +ureg_get_nr_outputs( const struct ureg_program *ureg ) +{ + if (!ureg) + return 0; + return ureg->nr_outputs; +} + + void ureg_destroy( struct ureg_program *ureg ) { unsigned i; diff --git a/src/gallium/auxiliary/tgsi/tgsi_ureg.h b/src/gallium/auxiliary/tgsi/tgsi_ureg.h index be99ae0f048..4ad0242e5f3 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_ureg.h +++ b/src/gallium/auxiliary/tgsi/tgsi_ureg.h @@ -111,6 +111,12 @@ const struct tgsi_token * ureg_get_tokens( struct ureg_program *ureg, unsigned *nr_tokens ); +/* + * Returns the number of currently declared outputs. + */ +const unsigned +ureg_get_nr_outputs( const struct ureg_program *ureg ); + /* Free the tokens created by ureg_get_tokens() */ void ureg_free_tokens( const struct tgsi_token *tokens ); |