Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(981)

Unified Diff: ui/gl/gl_version_info.h

Issue 94963003: Take GL version and extensions correctly into account when binding functions (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressed review feedback and Mac build failure Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/gl/gl_version_info.h
diff --git a/ui/gl/gl_version_info.h b/ui/gl/gl_version_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..a09d1b374a522a65047cba9376ce1ad60f13d1dc
--- /dev/null
+++ b/ui/gl/gl_version_info.h
@@ -0,0 +1,34 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_GL_VERSION_INFO_H_
+#define UI_GL_VERSION_INFO_H_
+
+#include <string>
+#include "base/basictypes.h"
+
+namespace gfx {
+
+struct GLVersionInfo {
+ GLVersionInfo(const char* version_str);
piman 2013/12/04 22:45:12 nit: explicit.
oetuaho 2013/12/05 09:47:14 Done.
+
+ // New flags, such as is_gl4_4 could be introduced as needed.
+ // For now, this level of granularity is enough.
+ bool is_es;
+ bool is_es1;
+ bool is_es2;
+ bool is_es3;
+
+ bool is_gl1;
+ bool is_gl2;
+ bool is_gl3;
+ bool is_gl4;
+
+private:
+ DISALLOW_COPY_AND_ASSIGN(GLVersionInfo);
+};
+
+} // namespace gfx
+
+#endif // UI_GL_VERSION_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698