diff options
Diffstat (limited to 'src/gallium/drivers/svga')
-rw-r--r-- | src/gallium/drivers/svga/svga_tgsi.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi.c b/src/gallium/drivers/svga/svga_tgsi.c index 7cbd5166900..0b2d8af64d9 100644 --- a/src/gallium/drivers/svga/svga_tgsi.c +++ b/src/gallium/drivers/svga/svga_tgsi.c @@ -209,6 +209,12 @@ svga_tgsi_vgpu9_translate(struct svga_context *svga, goto fail; } + if (emit.info.indirect_files & (1 << TGSI_FILE_TEMPORARY)) { + debug_printf( + "svga: indirect indexing of temporary registers is not supported.\n"); + goto fail; + } + emit.in_main_func = TRUE; if (!svga_shader_emit_header(&emit)) { |