projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22658c1
)
softpipe: Fix MSVC build.
author
José Fonseca
<jfonseca@vmware.com>
Mon, 28 Sep 2009 12:03:03 +0000
(13:03 +0100)
committer
José Fonseca
<jfonseca@vmware.com>
Mon, 28 Sep 2009 12:03:03 +0000
(13:03 +0100)
src/gallium/drivers/softpipe/sp_video_context.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/softpipe/sp_video_context.c
b/src/gallium/drivers/softpipe/sp_video_context.c
index 3be33fbbdf8f7e474424acab2db8ea46510566da..ccb29726b6a9d3a32dce9c921ed8a26fb33abf1c 100644
(file)
--- a/
src/gallium/drivers/softpipe/sp_video_context.c
+++ b/
src/gallium/drivers/softpipe/sp_video_context.c
@@
-115,6
+115,7
@@
init_pipe_state(struct sp_mpeg12_context *ctx)
struct pipe_rasterizer_state rast;
struct pipe_blend_state blend;
struct pipe_depth_stencil_alpha_state dsa;
+ unsigned i;
assert(ctx);
@@
-167,7
+168,7
@@
init_pipe_state(struct sp_mpeg12_context *ctx)
dsa.depth.writemask = 0;
dsa.depth.func = PIPE_FUNC_ALWAYS;
dsa.depth.occlusion_count = 0;
- for (
unsigned
i = 0; i < 2; ++i) {
+ for (i = 0; i < 2; ++i) {
dsa.stencil[i].enabled = 0;
dsa.stencil[i].func = PIPE_FUNC_ALWAYS;
dsa.stencil[i].fail_op = PIPE_STENCIL_OP_KEEP;