diff options
author | Marek Olšák <[email protected]> | 2015-12-23 03:01:32 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-01-07 18:26:05 +0100 |
commit | f3658be108aa4637aec44d544164d772774ae165 (patch) | |
tree | e83b30cafada1721a958c0a968a06e0a91a859b2 /src/gallium/auxiliary/tgsi/tgsi_scan.h | |
parent | 3e8f644ed31809ff558dc635581ba7abf6a16776 (diff) |
tgsi/scan: set if a fragment shader writes sample mask
This will be used by radeonsi.
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_scan.h')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_scan.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_scan.h b/src/gallium/auxiliary/tgsi/tgsi_scan.h index 7e9a5597db2..a3e437809aa 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_scan.h +++ b/src/gallium/auxiliary/tgsi/tgsi_scan.h @@ -82,6 +82,7 @@ struct tgsi_shader_info boolean reads_z; /**< does fragment shader read depth? */ boolean writes_z; /**< does fragment shader write Z value? */ boolean writes_stencil; /**< does fragment shader write stencil value? */ + boolean writes_samplemask; /**< does fragment shader write sample mask? */ boolean writes_edgeflag; /**< vertex shader outputs edgeflag */ boolean uses_kill; /**< KILL or KILL_IF instruction used? */ boolean uses_persp_center; |