diff options
author | Wladimir J. van der Laan <[email protected]> | 2017-11-18 10:44:36 +0100 |
---|---|---|
committer | Christian Gmeiner <[email protected]> | 2017-11-30 07:33:02 +0100 |
commit | 5cc36f9f2183ce17c38b19eea865ed742478e767 (patch) | |
tree | 47f6479f607228a19494e03404a04708eb936524 /src/gallium/drivers/etnaviv/etnaviv_compiler.h | |
parent | 3d09bb390a396ce89b6cb025d84e4076d8b27ae0 (diff) |
etnaviv: GC7000: Make point sprites work on HALTI5
Track varying component offset of the point size output, as well as
provide the offset of the point coord input.
Signed-off-by: Wladimir J. van der Laan <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
Diffstat (limited to 'src/gallium/drivers/etnaviv/etnaviv_compiler.h')
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_compiler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_compiler.h b/src/gallium/drivers/etnaviv/etnaviv_compiler.h index f5c16890a66..48b1b218750 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_compiler.h +++ b/src/gallium/drivers/etnaviv/etnaviv_compiler.h @@ -118,6 +118,7 @@ struct etna_shader_link_info { /* each PS input is annotated with the VS output reg */ unsigned num_varyings; struct etna_varying varyings[ETNA_NUM_INPUTS]; + int pcoord_varying_comp_ofs; }; bool |