projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a523b62
)
cso_cache: Ensure irrelevant state of the blend state is zeroed.
author
José Fonseca
<jfonseca@vmware.com>
Sat, 24 Apr 2010 09:33:44 +0000
(10:33 +0100)
committer
José Fonseca
<jfonseca@vmware.com>
Sat, 24 Apr 2010 10:39:09 +0000
(11:39 +0100)
Otherwise drivers that bake the full blend state in a key end up having
uninitialized memory in their key.
Courtesy of valgrind.
src/gallium/auxiliary/cso_cache/cso_context.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/cso_cache/cso_context.c
b/src/gallium/auxiliary/cso_cache/cso_context.c
index 6fd4bd36428058173a4e28526bdb7fef80282d6e..6d0b42079866604460ae057d5530d506728a33f5 100644
(file)
--- a/
src/gallium/auxiliary/cso_cache/cso_context.c
+++ b/
src/gallium/auxiliary/cso_cache/cso_context.c
@@
-349,6
+349,7
@@
enum pipe_error cso_set_blend(struct cso_context *ctx,
if (!cso)
return PIPE_ERROR_OUT_OF_MEMORY;
+ memset(&cso->state, 0, sizeof cso->state);
memcpy(&cso->state, templ, key_size);
cso->data = ctx->pipe->create_blend_state(ctx->pipe, &cso->state);
cso->delete_state = (cso_state_callback)ctx->pipe->delete_blend_state;