diff options
Diffstat (limited to 'src/gallium/drivers/etnaviv/etnaviv_blend.h')
-rw-r--r-- | src/gallium/drivers/etnaviv/etnaviv_blend.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/etnaviv/etnaviv_blend.h b/src/gallium/drivers/etnaviv/etnaviv_blend.h index 54e7bab0f8a..e26864d409f 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_blend.h +++ b/src/gallium/drivers/etnaviv/etnaviv_blend.h @@ -30,9 +30,13 @@ #include "pipe/p_context.h" #include "pipe/p_state.h" +struct etna_context; + struct etna_blend_state { struct pipe_blend_state base; + bool enable; + uint32_t PE_ALPHA_CONFIG; uint32_t PE_COLOR_FORMAT; uint32_t PE_LOGIC_OP; @@ -49,4 +53,7 @@ void * etna_blend_state_create(struct pipe_context *pctx, const struct pipe_blend_state *so); +bool +etna_update_blend(struct etna_context *ctx); + #endif |