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_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_
6 #define GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_
10 #include "base/memory/scoped_ptr.h"
11 #include "gpu/command_buffer/client/gles2_cmd_helper.h"
12 #include "gpu/command_buffer/client/gpu_control.h"
13 #include "gpu/command_buffer/service/command_buffer_service.h"
14 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
15 #include "gpu/command_buffer/service/gpu_scheduler.h"
16 #include "ui/gfx/native_widget_types.h"
17 #include "ui/gl/gl_context.h"
18 #include "ui/gl/gl_surface.h"
21 class CommandBufferService
;
25 class TransferBufferManagerInterface
;
29 class GLES2Implementation
;
38 class Display
: private gpu::GpuControl
{
40 explicit Display(EGLNativeDisplayType display_id
);
43 void SetCreateOffscreen(int width
, int height
) {
44 create_offscreen_
= true;
45 create_offscreen_width_
= width
;
46 create_offscreen_height_
= height
;
49 bool is_initialized() const { return is_initialized_
; }
53 bool IsValidConfig(EGLConfig config
);
55 EGLConfig
* configs
, EGLint config_size
, EGLint
* num_config
);
56 bool GetConfigs(EGLConfig
* configs
, EGLint config_size
, EGLint
* num_config
);
57 bool GetConfigAttrib(EGLConfig config
, EGLint attribute
, EGLint
* value
);
60 bool IsValidNativeWindow(EGLNativeWindowType win
);
61 bool IsValidSurface(EGLSurface surface
);
62 EGLSurface
CreateWindowSurface(EGLConfig config
,
63 EGLNativeWindowType win
,
64 const EGLint
* attrib_list
);
65 void DestroySurface(EGLSurface surface
);
66 void SwapBuffers(EGLSurface surface
);
69 bool IsValidContext(EGLContext ctx
);
70 EGLContext
CreateContext(EGLConfig config
,
72 const EGLint
* attrib_list
);
73 void DestroyContext(EGLContext ctx
);
74 bool MakeCurrent(EGLSurface draw
, EGLSurface read
, EGLContext ctx
);
76 // GpuControl implementation.
77 gpu::Capabilities
GetCapabilities() override
;
78 int32_t CreateImage(ClientBuffer buffer
,
81 unsigned internalformat
) override
;
82 void DestroyImage(int32_t id
) override
;
83 int32_t CreateGpuMemoryBufferImage(size_t width
,
85 unsigned internalformat
,
86 unsigned usage
) override
;
87 uint32
InsertSyncPoint() override
;
88 uint32
InsertFutureSyncPoint() override
;
89 void RetireSyncPoint(uint32 sync_point
) override
;
90 void SignalSyncPoint(uint32 sync_point
,
91 const base::Closure
& callback
) override
;
92 void SignalQuery(uint32 query
, const base::Closure
& callback
) override
;
93 void SetSurfaceVisible(bool visible
) override
;
94 uint32
CreateStreamTexture(uint32 texture_id
) override
;
95 void SetLock(base::Lock
*) override
;
96 bool IsGpuChannelLost() override
;
99 EGLNativeDisplayType display_id_
;
101 bool is_initialized_
;
102 bool create_offscreen_
;
103 int create_offscreen_width_
;
104 int create_offscreen_height_
;
106 scoped_refptr
<gpu::TransferBufferManagerInterface
> transfer_buffer_manager_
;
107 scoped_ptr
<gpu::CommandBufferService
> command_buffer_
;
108 scoped_ptr
<gpu::GpuScheduler
> gpu_scheduler_
;
109 scoped_ptr
<gpu::gles2::GLES2Decoder
> decoder_
;
110 scoped_refptr
<gfx::GLContext
> gl_context_
;
111 scoped_refptr
<gfx::GLSurface
> gl_surface_
;
112 scoped_ptr
<gpu::gles2::GLES2CmdHelper
> gles2_cmd_helper_
;
113 scoped_ptr
<gpu::TransferBuffer
> transfer_buffer_
;
115 // TODO(alokp): Support more than one config, surface, and context.
116 scoped_ptr
<Config
> config_
;
117 scoped_ptr
<Surface
> surface_
;
118 scoped_ptr
<gpu::gles2::GLES2Implementation
> context_
;
120 DISALLOW_COPY_AND_ASSIGN(Display
);
125 #endif // GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_