diff options
author | Wladimir J. van der Laan <[email protected]> | 2017-11-18 10:44:30 +0100 |
---|---|---|
committer | Christian Gmeiner <[email protected]> | 2017-11-30 07:27:53 +0100 |
commit | 079bbaec0c7a0ef984ce502fb86f980cbe8577f8 (patch) | |
tree | a063009ade8a75026f37a2cf7cfb0f6eae5e09e4 /src/gallium/drivers/etnaviv/etnaviv_rs.h | |
parent | 77768b185977fa3dde2bc2d2108c83e22f9aef15 (diff) |
etnaviv: GC7000: Factor out RS blit functionality
Prepare for BLT-based blitting path by moving RS-based
blitting to the RS implementation file, making this
self-contained.
Signed-off-by: Wladimir J. van der Laan <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
Diffstat (limited to 'src/gallium/drivers/etnaviv/etnaviv_rs.h')
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_rs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_rs.h b/src/gallium/drivers/etnaviv/etnaviv_rs.h index 41a596055f5..e71dfa0b8a0 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_rs.h +++ b/src/gallium/drivers/etnaviv/etnaviv_rs.h @@ -83,8 +83,8 @@ void etna_compile_rs_state(struct etna_context *ctx, struct compiled_rs_state *cs, const struct rs_state *rs); -/* modify the clear bits value in the compiled RS state */ +/* Context initialization for RS clear_blit functions. */ void -etna_modify_rs_clearbits(struct compiled_rs_state *cs, uint32_t clear_bits); +etna_clear_blit_rs_init(struct pipe_context *pctx); #endif |