summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/swr/rasterizer/scripts
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2016-04-25 14:19:58 -0600
committerTim Rowley <[email protected]>2016-05-05 14:48:55 -0500
commit1eb211c4a4c31e5e46840435df90554fbc864adc (patch)
tree3af8af87bd2572f1fc4248ceceadcac7e542dd8c /src/gallium/drivers/swr/rasterizer/scripts
parentd97e333ea435906a1b0a50972cb942c68dd734a2 (diff)
swr: [rasterizer] Whitespace cleanup and misc changes
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers/swr/rasterizer/scripts')
-rw-r--r--src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template b/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
index 9b34592aaad..8dbfafde2d9 100644
--- a/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
+++ b/src/gallium/drivers/swr/rasterizer/scripts/templates/knobs.template
@@ -116,7 +116,6 @@ extern GlobalKnobs g_GlobalKnobs;
#define KNOB_${knob[0]}${space_knob(knob[0])} GET_KNOB(${knob[0]})
% endfor
-
% else:
% for inc in includes:
#include <${inc}>
@@ -135,7 +134,6 @@ GlobalKnobs::GlobalKnobs()
% for knob in knobs:
InitKnob(${knob[0]});
% endfor
-
}
//========================================================
@@ -164,5 +162,4 @@ std::string GlobalKnobs::ToString(const char* optPerLinePrefix)
return str.str();
}
-
% endif