| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 GPU_GLES2_CONFORM_TEST_SURFACE_H_ | 5 #ifndef GPU_GLES2_CONFORM_TEST_SURFACE_H_ |
| 6 #define GPU_GLES2_CONFORM_TEST_SURFACE_H_ | 6 #define GPU_GLES2_CONFORM_TEST_SURFACE_H_ |
| 7 | 7 |
| 8 #include <EGL/egl.h> | 8 #include <EGL/egl.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 11 |
| 12 namespace gfx { | |
| 13 class GLSurface; | |
| 14 } | |
| 15 namespace egl { | 12 namespace egl { |
| 16 | 13 |
| 17 class Surface : public base::RefCountedThreadSafe<Surface> { | 14 class Surface { |
| 18 public: | 15 public: |
| 19 explicit Surface(gfx::GLSurface* gl_surface); | 16 explicit Surface(EGLNativeWindowType win); |
| 20 void set_is_current_in_some_thread(bool flag) { | 17 ~Surface(); |
| 21 is_current_in_some_thread_ = flag; | 18 |
| 22 } | 19 EGLNativeWindowType window() { return window_; } |
| 23 bool is_current_in_some_thread() const { return is_current_in_some_thread_; } | |
| 24 gfx::GLSurface* gl_surface() const; | |
| 25 static bool ValidatePbufferAttributeList(const EGLint* attrib_list); | |
| 26 static bool ValidateWindowAttributeList(const EGLint* attrib_list); | |
| 27 | 20 |
| 28 private: | 21 private: |
| 29 friend class base::RefCountedThreadSafe<Surface>; | 22 EGLNativeWindowType window_; |
| 30 ~Surface(); | 23 |
| 31 bool is_current_in_some_thread_; | |
| 32 scoped_refptr<gfx::GLSurface> gl_surface_; | |
| 33 DISALLOW_COPY_AND_ASSIGN(Surface); | 24 DISALLOW_COPY_AND_ASSIGN(Surface); |
| 34 }; | 25 }; |
| 35 | 26 |
| 36 } // namespace egl | 27 } // namespace egl |
| 37 | 28 |
| 38 #endif // GPU_GLES2_CONFORM_TEST_SURFACE_H_ | 29 #endif // GPU_GLES2_CONFORM_TEST_SURFACE_H_ |
| OLD | NEW |