projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
846b7fb
)
gallium: fix bad ptr assignment
author
Brian
<brian@i915.localnet.net>
Mon, 25 Feb 2008 22:34:46 +0000
(15:34 -0700)
committer
Brian
<brian@i915.localnet.net>
Mon, 25 Feb 2008 22:34:46 +0000
(15:34 -0700)
src/gallium/auxiliary/draw/draw_context.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/draw/draw_context.c
b/src/gallium/auxiliary/draw/draw_context.c
index
6e5e4d6
..
7dd1c6f
100644
(file)
--- a/
src/gallium/auxiliary/draw/draw_context.c
+++ b/
src/gallium/auxiliary/draw/draw_context.c
@@
-262,7
+262,7
@@
int
draw_find_vs_output(struct draw_context *draw,
uint semantic_name, uint semantic_index)
{
- const struct pipe_shader_state *vs =
&
draw->vertex_shader->state;
+ const struct pipe_shader_state *vs = draw->vertex_shader->state;
uint i;
for (i = 0; i < vs->num_outputs; i++) {
if (vs->output_semantic_name[i] == semantic_name &&