diff options
author | Roland Scheidegger <[email protected]> | 2013-01-29 08:39:09 -0800 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-01-29 08:40:52 -0800 |
commit | 0eb588a37cc0427fd5c6a1ed2b212ed5d68f4dab (patch) | |
tree | ae53d37a9ae0ce46717757f4c7714548224c4c72 /src/gallium/auxiliary/draw/draw_llvm.h | |
parent | 845130951f9f62a1baba9ae9ea2b234e83ac5c94 (diff) |
draw: fix draw_llvm_variant_key struct padding to avoid recompiles
The struct padding got broken by c789b981b244333cfc903bcd1e2fefc010500013.
This caused serious performance regression because part of the key was
uninitialized and hence the shader always recompiled (at least on release
builds...).
While here also fix key size calculation when the number of samplers
and the number of sampler views are different.
v2: add comment
Reviewed-by: Jose Fonseca <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_llvm.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.h b/src/gallium/auxiliary/draw/draw_llvm.h index a6648573aa5..17ca3047594 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.h +++ b/src/gallium/auxiliary/draw/draw_llvm.h @@ -206,8 +206,13 @@ struct draw_llvm_variant_key unsigned clip_halfz:1; unsigned bypass_viewport:1; unsigned need_edgeflags:1; + /* + * it is important there are no holes in this struct + * (and all padding gets zeroed). + */ + unsigned pad1:1; unsigned ucp_enable:PIPE_MAX_CLIP_PLANES; - unsigned pad:33-PIPE_MAX_CLIP_PLANES; + unsigned pad2:32-PIPE_MAX_CLIP_PLANES; /* Variable number of vertex elements: */ |