diff options
author | Marek Olšák <[email protected]> | 2017-10-05 20:05:44 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-10-07 18:26:35 +0200 |
commit | 6a8401a94e054e91ff599b57913bcab0c1010d91 (patch) | |
tree | d8bf626e2bfd8788a3f6b68e51115af5a039ad51 /src/gallium/drivers/radeonsi/si_pipe.h | |
parent | f3fe6afba8c0e33b9857a8f907913ce63164e0c1 (diff) |
radeonsi: add VS blit shader creation
no users yet
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_pipe.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.h b/src/gallium/drivers/radeonsi/si_pipe.h index 97dd875a64e..c45cc2d8145 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.h +++ b/src/gallium/drivers/radeonsi/si_pipe.h @@ -320,6 +320,11 @@ struct si_context { void *custom_blend_fmask_decompress; void *custom_blend_eliminate_fastclear; void *custom_blend_dcc_decompress; + void *vs_blit_pos; + void *vs_blit_pos_layered; + void *vs_blit_color; + void *vs_blit_color_layered; + void *vs_blit_texcoord; struct si_screen *screen; LLVMTargetMachineRef tm; /* only non-threaded compilation */ struct si_shader_ctx_state fixed_func_tcs_shader; |