projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81938d2
)
gallium/postprocess: move declarations before code
author
Brian Paul
<brianp@vmware.com>
Thu, 2 Feb 2012 22:14:04 +0000
(15:14 -0700)
committer
Brian Paul
<brianp@vmware.com>
Thu, 2 Feb 2012 22:14:10 +0000
(15:14 -0700)
To fix MSVC build.
src/gallium/auxiliary/postprocess/pp_run.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/postprocess/pp_run.c
b/src/gallium/auxiliary/postprocess/pp_run.c
index aa1badc72aa7955475fb90916ed890037a54f026..89b88a5214c393d201d897b1cbad57c55c20afc0 100644
(file)
--- a/
src/gallium/auxiliary/postprocess/pp_run.c
+++ b/
src/gallium/auxiliary/postprocess/pp_run.c
@@
-42,7
+42,7
@@
void
pp_run(struct pp_queue_t *ppq, struct pipe_resource *in,
struct pipe_resource *out, struct pipe_resource *indepth)
{
-
+ struct pipe_resource *refin = NULL, *refout = NULL;
unsigned int i;
if (in->width0 != ppq->p->framebuffer.width ||
@@
-65,7
+65,6
@@
pp_run(struct pp_queue_t *ppq, struct pipe_resource *in,
}
// Kept only for this frame.
- struct pipe_resource *refin = NULL, *refout = NULL;
pipe_resource_reference(&ppq->depth, indepth);
pipe_resource_reference(&refin, in);
pipe_resource_reference(&refout, out);