diff options
author | Zack Rusin <[email protected]> | 2009-12-23 13:30:12 -0500 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2009-12-25 05:52:18 -0500 |
commit | ac96ee1c16419583aa43c9f4100aaca774b9439a (patch) | |
tree | 011f6e8187a89e00bf5d9cd67129868917bfeba0 /src/gallium/drivers/softpipe/sp_context.c | |
parent | 22370990f28987b361c6adf8e81c5a18184e88ea (diff) |
softpipe: make it possible to dump geometry shader from the softpipe
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 0c890cb9406..82173a3c2a3 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -191,6 +191,7 @@ softpipe_create( struct pipe_screen *screen ) #endif softpipe->dump_fs = debug_get_bool_option( "GALLIUM_DUMP_FS", FALSE ); + softpipe->dump_gs = debug_get_bool_option( "SOFTPIPE_DUMP_GS", FALSE ); softpipe->pipe.winsys = screen->winsys; softpipe->pipe.screen = screen; |