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:
authorClément Foucault <foucault.clem@gmail.com>2020-07-26 21:20:03 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-07-26 22:07:25 +0300
commit54237994d8b4fd199dc8a616685638b39e7e278d (patch)
tree0fce384c32a42a489afdcdae803fee086fb60c10 /source/blender/makesdna/DNA_image_types.h
parent487eaeed7e3da6bbadc7899062574ef9b62ab7e4 (diff)
Cleanup: Image: Rename redundant enum for clarity
Diffstat (limited to 'source/blender/makesdna/DNA_image_types.h')
-rw-r--r--source/blender/makesdna/DNA_image_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_image_types.h b/source/blender/makesdna/DNA_image_types.h
index ba40ef1c2bc..d01933348de 100644
--- a/source/blender/makesdna/DNA_image_types.h
+++ b/source/blender/makesdna/DNA_image_types.h
@@ -118,10 +118,10 @@ typedef struct ImageTile {
#define IMA_SHOW_STEREO (1 << 4)
enum {
- TEXTARGET_TEXTURE_2D = 0,
- TEXTARGET_TEXTURE_CUBE_MAP,
- TEXTARGET_TEXTURE_2D_ARRAY,
- TEXTARGET_TEXTURE_TILE_MAPPING,
+ TEXTARGET_2D = 0,
+ TEXTARGET_CUBE_MAP,
+ TEXTARGET_2D_ARRAY,
+ TEXTARGET_TILE_MAPPING,
TEXTARGET_COUNT,
};