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>2018-09-12 05:18:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-12 05:19:46 +0300
commit7eecc9407415e18eaab2ded2fcc883edbf58c633 (patch)
tree0ca4e707c50ea1d6c86ce61cf0f3498f4a7b3373 /source/blender/gpu/intern/gpu_codegen.h
parentbaca8344d997e0a7c6f5f1833cd5b734b5e680da (diff)
Cleanup: use uint/uchar types in GPU
Diffstat (limited to 'source/blender/gpu/intern/gpu_codegen.h')
-rw-r--r--source/blender/gpu/intern/gpu_codegen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_codegen.h b/source/blender/gpu/intern/gpu_codegen.h
index 7a86bed55de..a6cb2468f2f 100644
--- a/source/blender/gpu/intern/gpu_codegen.h
+++ b/source/blender/gpu/intern/gpu_codegen.h
@@ -169,7 +169,7 @@ struct GPUPass {
char *geometrycode;
char *vertexcode;
char *defines;
- unsigned int refcount; /* Orphaned GPUPasses gets freed by the garbage collector. */
+ uint refcount; /* Orphaned GPUPasses gets freed by the garbage collector. */
uint32_t hash; /* Identity hash generated from all GLSL code. */
bool compiled; /* Did we already tried to compile the attached GPUShader. */
};