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

Unified Diff: ui/gl/gl_version_info.h

Issue 139013008: Implement support for rendering to 32-bit float textures on ES3 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Make TexSubImage validation agree with TexImage validation Created 6 years, 10 months 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
index c8ecb074407d46f11d2ee55543b627fddb728718..13b323faaf3756be4b5c9dbeb02713f66299d5b7 100644
--- a/ui/gl/gl_version_info.h
+++ b/ui/gl/gl_version_info.h
@@ -11,7 +11,7 @@
namespace gfx {
struct GLVersionInfo {
- explicit GLVersionInfo(const char* version_str);
+ GLVersionInfo(const char* version_str, const char* renderer_str);
// New flags, such as is_gl4_4 could be introduced as needed.
// For now, this level of granularity is enough.
@@ -25,6 +25,8 @@ struct GLVersionInfo {
bool is_gl3;
bool is_gl4;
+ bool is_angle;
+
private:
DISALLOW_COPY_AND_ASSIGN(GLVersionInfo);
};

Powered by Google App Engine
This is Rietveld 408576698