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:17:01 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-07-26 22:07:25 +0300
commit487eaeed7e3da6bbadc7899062574ef9b62ab7e4 (patch)
treec90cd601f1a4169ecdfb1e24a7a5a0c9a0ad827e /source/blender/makesdna/DNA_image_types.h
parent025dc31d28446039f949d8c12359c64c90530bee (diff)
GPUTexture: Replace GL textarget enum by Image enum
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 0ffb6c8a76a..ba40ef1c2bc 100644
--- a/source/blender/makesdna/DNA_image_types.h
+++ b/source/blender/makesdna/DNA_image_types.h
@@ -119,10 +119,10 @@ typedef struct ImageTile {
enum {
TEXTARGET_TEXTURE_2D = 0,
- TEXTARGET_TEXTURE_CUBE_MAP = 1,
- TEXTARGET_TEXTURE_2D_ARRAY = 2,
- TEXTARGET_TEXTURE_TILE_MAPPING = 3,
- TEXTARGET_COUNT = 4,
+ TEXTARGET_TEXTURE_CUBE_MAP,
+ TEXTARGET_TEXTURE_2D_ARRAY,
+ TEXTARGET_TEXTURE_TILE_MAPPING,
+ TEXTARGET_COUNT,
};
typedef struct Image {