ngl: Improve packing

Pack texture cache entries slightly better.

There was a 4 byte hole here.
This commit is contained in:
Matthias Clasen 2021-03-28 16:41:25 -04:00
parent 2599c5aed3
commit ce2c3efc91

View File

@ -58,13 +58,13 @@ struct _GskNglTexture
/* Backpointer to texture (can be cleared asynchronously) */
GdkTexture *user;
/* Only used by nine-slice textures */
GskNglTextureNineSlice *nine_slice;
/* Only used by sliced textures */
GskNglTextureSlice *slices;
guint n_slices;
/* Only used by nine-slice textures */
GskNglTextureNineSlice *nine_slice;
/* The actual GL texture identifier in some shared context */
guint texture_id;