Chromium Code Reviews| 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..891fd90bbed1848934416f7d32f1308146cd2f94 |
| --- /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_ |
|
no sievers
2013/12/05 20:51:57
UI_GL_GL_VERSION_INFO_H_
oetuaho
2013/12/09 17:17:07
Done. There seem to be a lot of missing GL_'s in e
no sievers
2013/12/09 20:05:24
Ooops, let's do the other files in a separate patc
|
| +#define UI_GL_VERSION_INFO_H_ |
| + |
| +#include <string> |
| +#include "base/basictypes.h" |
| + |
| +namespace gfx { |
| + |
| +struct GLVersionInfo { |
| + explicit GLVersionInfo(const char* version_str); |
| + |
| + // 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_ |