aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/cso_cache
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2020-01-21 20:17:32 -0500
committerMarge Bot <[email protected]>2020-02-28 00:53:45 +0000
commit505cd5f12b0ee7a5bac353bb53da6e78bc10513d (patch)
tree4335e3a72659e134183dac1c79c592f70351307c /src/gallium/auxiliary/cso_cache
parent950ee0a3700ece300129b15075fe67b56ff45ea6 (diff)
gallium/cso_hash: pack cso_node better
Reviewed-by: Pierre-Eric Pelloux-Prayer <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3990>
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_hash.h b/src/gallium/auxiliary/cso_cache/cso_hash.h
index f50d69d47ab..c2343334de8 100644
--- a/src/gallium/auxiliary/cso_cache/cso_hash.h
+++ b/src/gallium/auxiliary/cso_cache/cso_hash.h
@@ -53,8 +53,8 @@ extern "C" {
struct cso_node {
struct cso_node *next;
- unsigned key;
void *value;
+ unsigned key;
};
struct cso_hash_iter {