summaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/vdpau/output.c
diff options
context:
space:
mode:
authorEmeric Grange <[email protected]>2011-09-12 23:39:29 +0200
committerChristian König <[email protected]>2011-09-14 15:49:16 +0200
commitc24bc6f8684abee8c9a1b263334cd7a8506657b1 (patch)
tree4cf3ac9347e521f63350c0778bca9ec8f4778499 /src/gallium/state_trackers/vdpau/output.c
parent87e84a2dbfb5ee330d4d5594963d7f8b507f9984 (diff)
st/vdpau: Various whitespace cleanups found while reading some code
Signed-off-by: Emeric Grange <[email protected]> Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/vdpau/output.c')
-rw-r--r--src/gallium/state_trackers/vdpau/output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/vdpau/output.c b/src/gallium/state_trackers/vdpau/output.c
index 1736eb942fb..9392f4856b1 100644
--- a/src/gallium/state_trackers/vdpau/output.c
+++ b/src/gallium/state_trackers/vdpau/output.c
@@ -318,7 +318,7 @@ vlVdpOutputSurfacePutBitsYCbCr(VdpOutputSurface surface,
static unsigned
BlendFactorToPipe(VdpOutputSurfaceRenderBlendFactor factor)
{
- switch(factor) {
+ switch (factor) {
case VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ZERO:
return PIPE_BLENDFACTOR_ZERO;
case VDP_OUTPUT_SURFACE_RENDER_BLEND_FACTOR_ONE:
@@ -358,7 +358,7 @@ BlendFactorToPipe(VdpOutputSurfaceRenderBlendFactor factor)
static unsigned
BlendEquationToPipe(VdpOutputSurfaceRenderBlendEquation equation)
{
- switch(equation) {
+ switch (equation) {
case VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_SUBTRACT:
return PIPE_BLEND_SUBTRACT;
case VDP_OUTPUT_SURFACE_RENDER_BLEND_EQUATION_REVERSE_SUBTRACT: