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:
authorCampbell Barton <ideasman42@gmail.com>2020-04-20 05:02:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-20 05:11:12 +0300
commit23bb42a06e283c154ccf2048e0d3880abdd3af3f (patch)
tree0bd72c2205ce62e71aaaf440c51a56fc36ef2142
parent30bfa991f87b9ead6d4f8f9a87322c4aeb9e99d4 (diff)
Cleanup: accidental value declaration with struct type
-rw-r--r--source/blender/gpu/intern/gpu_viewport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_viewport.c b/source/blender/gpu/intern/gpu_viewport.c
index ed825db26ac..496e8981f2b 100644
--- a/source/blender/gpu/intern/gpu_viewport.c
+++ b/source/blender/gpu/intern/gpu_viewport.c
@@ -74,7 +74,7 @@ struct GPUViewportBatch {
rctf rect_pos;
rctf rect_uv;
} last_used_parameters;
-} GPUViewportBatch;
+};
static struct {
GPUVertFormat format;