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:
authorDalai Felinto <dfelinto@gmail.com>2017-05-19 12:47:55 +0300
committerDalai Felinto <dfelinto@gmail.com>2017-05-19 15:14:46 +0300
commit60fc04fb9b4f112998ac42395a17b56cc6edec5c (patch)
tree929dd4d2868800a6c18ecdc4590590a22a853a0a /intern/gawain
parentbad8b91fd3c7c6f458f0830520b21fe628565cf2 (diff)
Remove reference to WITH_GL_PROFILE_CORE
There is no more point of keep those around. ES20 may need special case when/if we dabble with it again. Meanwhile no point on polluting the code with this. (ghost still has reference for the PROFILE, but that's reasonable)
Diffstat (limited to 'intern/gawain')
-rw-r--r--intern/gawain/gawain/vertex_format.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/intern/gawain/gawain/vertex_format.h b/intern/gawain/gawain/vertex_format.h
index 8e11158f332..fa93abeb717 100644
--- a/intern/gawain/gawain/vertex_format.h
+++ b/intern/gawain/gawain/vertex_format.h
@@ -18,13 +18,7 @@
#define AVG_VERTEX_ATTRIB_NAME_LEN 11
#define VERTEX_ATTRIB_NAMES_BUFFER_LEN ((AVG_VERTEX_ATTRIB_NAME_LEN + 1) * MAX_VERTEX_ATTRIBS)
-#if defined(WITH_GL_PROFILE_CORE) || defined(_WIN32)
- // (GLEW_VERSION_3_3 || GLEW_ARB_vertex_type_2_10_10_10_rev)
- // ^-- this is only guaranteed on Windows right now, will be true on all platforms soon
- #define USE_10_10_10 1
-#else
- #define USE_10_10_10 0
-#endif
+#define USE_10_10_10 1
typedef enum {
COMP_I8,