diff options
Diffstat (limited to 'src/gallium/drivers/svga/svga_tgsi.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi.h b/src/gallium/drivers/svga/svga_tgsi.h index bb0c6d0e029..0e06dbf9919 100644 --- a/src/gallium/drivers/svga/svga_tgsi.h +++ b/src/gallium/drivers/svga/svga_tgsi.h @@ -79,6 +79,12 @@ struct svga_compile_key { int8_t generic_remap_table[MAX_GENERIC_VARYING]; }; + +/** + * A single TGSI shader may be compiled into different variants of + * SVGA3D shaders depending on the compile key. Each user shader + * will have a linked list of these results. + */ struct svga_shader_result { const struct svga_shader *shader; @@ -92,7 +98,8 @@ struct svga_shader_result const unsigned *tokens; unsigned nr_tokens; - /* SVGA Shader ID: + /** Per-context shader identifier used with SVGA_3D_CMD_SHADER_DEFINE, + * SVGA_3D_CMD_SET_SHADER and SVGA_3D_CMD_SHADER_DESTROY. */ unsigned id; |