Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / gpu / gles2_conform_support / egl / display.h
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.
4
5 #ifndef GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_
6 #define GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_
7
8 #include <EGL/egl.h>
9
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"
19
20 namespace gpu {
21 class CommandBufferService;
22 class GpuControl;
23 class GpuScheduler;
24 class TransferBuffer;
25 class TransferBufferManagerInterface;
26
27 namespace gles2 {
28 class GLES2CmdHelper;
29 class GLES2Implementation;
30 }  // namespace gles2
31 }  // namespace gpu
32
33 namespace egl {
34
35 class Config;
36 class Surface;
37
38 class Display : private gpu::GpuControl {
39  public:
40   explicit Display(EGLNativeDisplayType display_id);
41   ~Display() override;
42
43   void SetCreateOffscreen(int width, int height) {
44     create_offscreen_ = true;
45     create_offscreen_width_ = width;
46     create_offscreen_height_ = height;
47   }
48
49   bool is_initialized() const { return is_initialized_; }
50   bool Initialize();
51
52   // Config routines.
53   bool IsValidConfig(EGLConfig config);
54   bool ChooseConfigs(
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);
58
59   // Surface routines.
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);
67
68   // Context routines.
69   bool IsValidContext(EGLContext ctx);
70   EGLContext CreateContext(EGLConfig config,
71                            EGLContext share_ctx,
72                            const EGLint* attrib_list);
73   void DestroyContext(EGLContext ctx);
74   bool MakeCurrent(EGLSurface draw, EGLSurface read, EGLContext ctx);
75
76   // GpuControl implementation.
77   gpu::Capabilities GetCapabilities() override;
78   int32_t CreateImage(ClientBuffer buffer,
79                       size_t width,
80                       size_t height,
81                       unsigned internalformat) override;
82   void DestroyImage(int32_t id) override;
83   int32_t CreateGpuMemoryBufferImage(size_t width,
84                                      size_t height,
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
96  private:
97   EGLNativeDisplayType display_id_;
98
99   bool is_initialized_;
100   bool create_offscreen_;
101   int create_offscreen_width_;
102   int create_offscreen_height_;
103
104   scoped_ptr<gpu::TransferBufferManagerInterface> transfer_buffer_manager_;
105   scoped_ptr<gpu::CommandBufferService> command_buffer_;
106   scoped_ptr<gpu::GpuScheduler> gpu_scheduler_;
107   scoped_ptr<gpu::gles2::GLES2Decoder> decoder_;
108   scoped_refptr<gfx::GLContext> gl_context_;
109   scoped_refptr<gfx::GLSurface> gl_surface_;
110   scoped_ptr<gpu::gles2::GLES2CmdHelper> gles2_cmd_helper_;
111   scoped_ptr<gpu::TransferBuffer> transfer_buffer_;
112
113   // TODO(alokp): Support more than one config, surface, and context.
114   scoped_ptr<Config> config_;
115   scoped_ptr<Surface> surface_;
116   scoped_ptr<gpu::gles2::GLES2Implementation> context_;
117
118   DISALLOW_COPY_AND_ASSIGN(Display);
119 };
120
121 }  // namespace egl
122
123 #endif  // GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_