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:
authorJason Wilkins <Jason.A.Wilkins@gmail.com>2012-05-04 15:50:11 +0400
committerJason Wilkins <Jason.A.Wilkins@gmail.com>2012-05-04 15:50:11 +0400
commita0ce240de94521b6caf55b0738b70f2dc2ad3353 (patch)
treea14430fbb928e7b25ec29ac1e33cf9c62a13159f /source/blender/blenkernel/BKE_DerivedMesh.h
parentdf553582e96569e49a4d28c167c5dd334be5f216 (diff)
Renamed "fake" OpenGL identifiers.
Any identifier that looks like an OpenGL identifier, but isn't, causes a false alarm by the glreport.py tool. Most of these were in comments so I just rephrased the comments. There were a couple of static functions/macros that were easy enough to rename. Only the glTexco and glIndex fields of the DMVertexAttribs struct was public and had non-local uses.
Diffstat (limited to 'source/blender/blenkernel/BKE_DerivedMesh.h')
-rw-r--r--source/blender/blenkernel/BKE_DerivedMesh.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_DerivedMesh.h b/source/blender/blenkernel/BKE_DerivedMesh.h
index 3a28af97166..a15192f156a 100644
--- a/source/blender/blenkernel/BKE_DerivedMesh.h
+++ b/source/blender/blenkernel/BKE_DerivedMesh.h
@@ -664,22 +664,22 @@ void DM_update_weight_mcol(struct Object *ob, struct DerivedMesh *dm, int const
typedef struct DMVertexAttribs {
struct {
struct MTFace *array;
- int emOffset, glIndex, glTexco;
+ int em_offset, gl_index, gl_texco;
} tface[MAX_MTFACE];
struct {
struct MCol *array;
- int emOffset, glIndex;
+ int em_offset, gl_index;
} mcol[MAX_MCOL];
struct {
float (*array)[4];
- int emOffset, glIndex;
+ int em_offset, gl_index;
} tang;
struct {
float (*array)[3];
- int emOffset, glIndex, glTexco;
+ int em_offset, gl_index, gl_texco;
} orco;
int tottface, totmcol, tottang, totorco;