diff options
author | Jakob Bornecrantz <[email protected]> | 2010-04-22 18:20:31 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-04-23 21:57:49 +0100 |
commit | 1820d240cd0b517ca1d73f1e8e0a528ca8d5b092 (patch) | |
tree | 99e08d32b9d6ef583920a4d47145e42857f635ed /src/gallium/auxiliary/draw/draw_vs.c | |
parent | 89aaaab79f407dd691e0a98167f48a0860ec791a (diff) |
gallium: Convert some uses of get option to static
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c index cfd51540241..0c059573505 100644 --- a/src/gallium/auxiliary/draw/draw_vs.c +++ b/src/gallium/auxiliary/draw/draw_vs.c @@ -46,7 +46,7 @@ #include "tgsi/tgsi_dump.h" #include "tgsi/tgsi_exec.h" - +DEBUG_GET_ONCE_BOOL_OPTION(gallium_dump_vs, "GALLIUM_DUMP_VS", FALSE); void draw_vs_set_constants(struct draw_context *draw, @@ -157,7 +157,7 @@ draw_delete_vertex_shader(struct draw_context *draw, boolean draw_vs_init( struct draw_context *draw ) { - draw->dump_vs = debug_get_bool_option("GALLIUM_DUMP_VS", FALSE); + draw->dump_vs = debug_get_option_gallium_dump_vs(); draw->vs.machine = tgsi_exec_machine_create(); if (!draw->vs.machine) |