diff options
author | Dave Airlie <[email protected]> | 2017-09-03 21:20:35 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-09-06 06:14:25 +1000 |
commit | 9e6b382142615f6b3367ccc81c5ee1769f7c40b5 (patch) | |
tree | eea35bcb5f3512c676b8e990c30cf453168799c1 /src | |
parent | ff6123925c279af2bfcaf65bab0b12032600ad58 (diff) |
mesa/mtypes: repack gl_sampler_object.
160->152.
Reviewed-by: Thomas Helland <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/mtypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 3d68a6d7599..db9ea760e01 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -990,8 +990,8 @@ struct gl_sampler_object GLboolean CubeMapSeamless; /**< GL_AMD_seamless_cubemap_per_texture */ /** GL_ARB_bindless_texture */ - struct util_dynarray Handles; bool HandleAllocated; + struct util_dynarray Handles; }; |