Rewrite AndroidSyncSettings to be significantly simpler.
[chromium-blink-merge.git] / gpu / command_buffer / service / gl_context_virtual.h
blob42c6d42980547d976f3807e2f63fb49979e8fff5
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
3 // found in the LICENSE file.
5 #ifndef GPU_COMMAND_BUFFER_SERVICE_GL_CONTEXT_VIRTUAL_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_GL_CONTEXT_VIRTUAL_H_
8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h"
12 #include "gpu/gpu_export.h"
13 #include "ui/gl/gl_context.h"
15 namespace gfx {
16 class Display;
17 class GLSurface;
18 class GLStateRestorer;
21 namespace gpu {
22 namespace gles2 {
23 class GLES2Decoder;
26 // Encapsulates a virtual OpenGL context.
27 class GPU_EXPORT GLContextVirtual : public gfx::GLContext {
28 public:
29 GLContextVirtual(
30 gfx::GLShareGroup* share_group,
31 gfx::GLContext* shared_context,
32 base::WeakPtr<gles2::GLES2Decoder> decoder);
34 gfx::Display* display();
36 // Implement GLContext.
37 bool Initialize(gfx::GLSurface* compatible_surface,
38 gfx::GpuPreference gpu_preference) override;
39 void Destroy() override;
40 bool MakeCurrent(gfx::GLSurface* surface) override;
41 void ReleaseCurrent(gfx::GLSurface* surface) override;
42 bool IsCurrent(gfx::GLSurface* surface) override;
43 void* GetHandle() override;
44 scoped_refptr<gfx::GPUTimingClient> CreateGPUTimingClient() override;
45 void OnSetSwapInterval(int interval) override;
46 std::string GetExtensions() override;
47 bool GetTotalGpuMemory(size_t* bytes) override;
48 void SetSafeToForceGpuSwitch() override;
49 bool WasAllocatedUsingRobustnessExtension() override;
50 void SetUnbindFboOnMakeCurrent() override;
52 protected:
53 ~GLContextVirtual() override;
55 private:
56 scoped_refptr<gfx::GLContext> shared_context_;
57 gfx::Display* display_;
58 base::WeakPtr<gles2::GLES2Decoder> decoder_;
60 DISALLOW_COPY_AND_ASSIGN(GLContextVirtual);
63 } // namespace gpu
65 #endif // GPU_COMMAND_BUFFER_SERVICE_GL_CONTEXT_VIRTUAL_H_