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:
authorHans Goudey <h.goudey@me.com>2021-10-05 21:15:31 +0300
committerHans Goudey <h.goudey@me.com>2021-10-05 21:15:31 +0300
commit16e7a7b5b192fe19f271a28cfb55c1b19118ccb1 (patch)
tree6ca24971f20550cba7f19fbfb9f4ffda61975ae2 /source/blender/draw
parent88c02bf826df371be89af326515a3216fb449673 (diff)
Cleanup: Clang tidy
Diffstat (limited to 'source/blender/draw')
-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;