diff options
author | Tim Rowley <[email protected]> | 2017-07-31 17:01:54 -0500 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2017-08-02 11:39:33 -0500 |
commit | 4c5b4f3f78381d8f2e3111f812609715f7d1c81c (patch) | |
tree | c7d136adabcc5b3ce1a024dd1e5451b0946b48a2 /src/gallium | |
parent | fb3e50a351b52014479a9a81226b7c51b176afed (diff) |
swr/rast: gen_knobs template code style
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp b/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp index e6fe16533a8..a9506434c62 100644 --- a/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp +++ b/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp @@ -203,8 +203,8 @@ GlobalKnobs g_GlobalKnobs; //======================================================== GlobalKnobs::GlobalKnobs() { - % for knob in knobs: - InitKnob(${knob[0]}); + % for knob in knobs : + InitKnob(${ knob[0] }); % endfor } |