Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/draw/intern/draw_texture_pool.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_texture_pool.cc b/source/blender/draw/intern/draw_texture_pool.cc
index 544a763ddb9..61697465784 100644
--- a/source/blender/draw/intern/draw_texture_pool.cc
+++ b/source/blender/draw/intern/draw_texture_pool.cc
@@ -28,10 +28,10 @@
using namespace blender;
-typedef struct DRWTexturePoolHandle {
+struct DRWTexturePoolHandle {
uint64_t users_bits;
GPUTexture *texture;
-} DRWTexturePoolHandle;
+};
struct DRWTexturePool {
Vector<void *, 16> users;