OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_GL_GL_IMAGE_H_ | 5 #ifndef UI_GL_GL_IMAGE_H_ |
6 #define UI_GL_GL_IMAGE_H_ | 6 #define UI_GL_GL_IMAGE_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 // GL_RGBA. The client is responsible for implementing appropriate | 79 // GL_RGBA. The client is responsible for implementing appropriate |
80 // workarounds. The only support that the command buffer provides is format | 80 // workarounds. The only support that the command buffer provides is format |
81 // validation during calls to copyTexImage2D and copySubTexImage2D. | 81 // validation during calls to copyTexImage2D and copySubTexImage2D. |
82 // | 82 // |
83 // This is a workaround that is not intended to become a permanent part of the | 83 // This is a workaround that is not intended to become a permanent part of the |
84 // GLImage API. Theoretically, when Apple fixes their drivers, this can be | 84 // GLImage API. Theoretically, when Apple fixes their drivers, this can be |
85 // removed. https://crbug.com/581777#c36 | 85 // removed. https://crbug.com/581777#c36 |
86 virtual bool EmulatingRGB() const; | 86 virtual bool EmulatingRGB() const; |
87 | 87 |
88 // An identifier for subclasses. Necessary for safe downcasting. | 88 // An identifier for subclasses. Necessary for safe downcasting. |
89 enum class Type { | 89 enum class Type { NONE, IOSURFACE, DXGI_IMAGE }; |
90 NONE, | |
91 IOSURFACE | |
92 }; | |
93 virtual Type GetType() const; | 90 virtual Type GetType() const; |
94 | 91 |
95 protected: | 92 protected: |
96 virtual ~GLImage() {} | 93 virtual ~GLImage() {} |
97 | 94 |
98 private: | 95 private: |
99 friend class base::RefCounted<GLImage>; | 96 friend class base::RefCounted<GLImage>; |
100 | 97 |
101 DISALLOW_COPY_AND_ASSIGN(GLImage); | 98 DISALLOW_COPY_AND_ASSIGN(GLImage); |
102 }; | 99 }; |
103 | 100 |
104 } // namespace gl | 101 } // namespace gl |
105 | 102 |
106 #endif // UI_GL_GL_IMAGE_H_ | 103 #endif // UI_GL_GL_IMAGE_H_ |
OLD | NEW |