1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GL_GL_SURFACE_EGL_H_
#define UI_GL_GL_SURFACE_EGL_H_
#if defined(OS_WIN)
#include <windows.h>
#endif
#include <memory>
#include <string>
#include <vector>
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/vsync_provider.h"
#include "ui/gl/gl_bindings.h"
#include "ui/gl/gl_export.h"
#include "ui/gl/gl_surface.h"
#include "ui/gl/gl_surface_overlay.h"
#include "ui/gl/sync_control_vsync_provider.h"
namespace gl {
// If adding a new type, also add it to EGLDisplayType in
// tools/metrics/histograms/histograms.xml. Don't remove or reorder entries.
enum DisplayType {
DEFAULT = 0,
SWIFT_SHADER = 1,
ANGLE_WARP = 2,
ANGLE_D3D9 = 3,
ANGLE_D3D11 = 4,
ANGLE_OPENGL = 5,
ANGLE_OPENGLES = 6,
ANGLE_NULL = 7,
DISPLAY_TYPE_MAX = 8,
};
GL_EXPORT void GetEGLInitDisplays(bool supports_angle_d3d,
bool supports_angle_opengl,
bool supports_angle_null,
const base::CommandLine* command_line,
std::vector<DisplayType>* init_displays);
// VSync provider for EGL surface;
class GL_EXPORT EGLSyncControlVSyncProvider : public SyncControlVSyncProvider {
public:
explicit EGLSyncControlVSyncProvider(EGLSurface surface);
~EGLSyncControlVSyncProvider() override;
protected:
bool GetSyncValues(int64_t* system_time,
int64_t* media_stream_counter,
int64_t* swap_buffer_counter) override;
bool GetMscRate(int32_t* numerator, int32_t* denominator) override;
private:
EGLSurface surface_;
DISALLOW_COPY_AND_ASSIGN(EGLSyncControlVSyncProvider);
};
// Interface for EGL surface.
class GL_EXPORT GLSurfaceEGL : public GLSurface {
public:
GLSurfaceEGL();
// Implement GLSurface.
EGLDisplay GetDisplay() override;
EGLConfig GetConfig() override;
GLSurfaceFormat GetFormat() override;
static bool InitializeOneOff(EGLNativeDisplayType native_display);
static void ShutdownOneOff();
static EGLDisplay GetHardwareDisplay();
static EGLDisplay InitializeDisplay(EGLNativeDisplayType native_display);
static EGLNativeDisplayType GetNativeDisplay();
// These aren't particularly tied to surfaces, but since we already
// have the static InitializeOneOff here, it's easiest to reuse its
// initialization guards.
static const char* GetEGLExtensions();
static bool HasEGLExtension(const char* name);
static bool IsCreateContextRobustnessSupported();
static bool IsCreateContextBindGeneratesResourceSupported();
static bool IsCreateContextWebGLCompatabilitySupported();
static bool IsEGLSurfacelessContextSupported();
static bool IsDirectCompositionSupported();
protected:
~GLSurfaceEGL() override;
EGLConfig config_ = nullptr;
GLSurfaceFormat format_;
private:
DISALLOW_COPY_AND_ASSIGN(GLSurfaceEGL);
static bool initialized_;
};
// Encapsulates an EGL surface bound to a view.
class GL_EXPORT NativeViewGLSurfaceEGL : public GLSurfaceEGL {
public:
explicit NativeViewGLSurfaceEGL(EGLNativeWindowType window);
// Implement GLSurface.
using GLSurfaceEGL::Initialize;
bool Initialize(GLSurfaceFormat format) override;
void Destroy() override;
bool Resize(const gfx::Size& size,
float scale_factor,
bool has_alpha) override;
bool Recreate() override;
bool IsOffscreen() override;
gfx::SwapResult SwapBuffers() override;
gfx::Size GetSize() override;
EGLSurface GetHandle() override;
bool SupportsSwapBuffersWithDamage() override;
bool SupportsPostSubBuffer() override;
gfx::SwapResult SwapBuffersWithDamage(int x,
int y,
int width,
int height) override;
gfx::SwapResult PostSubBuffer(int x, int y, int width, int height) override;
bool SupportsCommitOverlayPlanes() override;
gfx::SwapResult CommitOverlayPlanes() override;
gfx::VSyncProvider* GetVSyncProvider() override;
bool ScheduleOverlayPlane(int z_order,
gfx::OverlayTransform transform,
GLImage* image,
const gfx::Rect& bounds_rect,
const gfx::RectF& crop_rect) override;
bool FlipsVertically() const override;
bool BuffersFlipped() const override;
// Create a NativeViewGLSurfaceEGL with an externally provided
// gfx::VSyncProvider. Takes ownership of the gfx::VSyncProvider.
virtual bool Initialize(std::unique_ptr<gfx::VSyncProvider> sync_provider);
// Takes care of the platform dependant bits, of any, for creating the window.
virtual bool InitializeNativeWindow();
protected:
~NativeViewGLSurfaceEGL() override;
EGLNativeWindowType window_;
gfx::Size size_;
bool enable_fixed_size_angle_;
void OnSetSwapInterval(int interval) override;
private:
// Commit the |pending_overlays_| and clear the vector. Returns false if any
// fail to be committed.
bool CommitAndClearPendingOverlays();
void UpdateSwapInterval();
EGLSurface surface_;
bool supports_post_sub_buffer_;
bool supports_swap_buffer_with_damage_;
bool flips_vertically_;
std::unique_ptr<gfx::VSyncProvider> vsync_provider_;
int swap_interval_;
std::vector<GLSurfaceOverlay> pending_overlays_;
#if defined(OS_WIN)
bool vsync_override_;
unsigned int swap_generation_;
static unsigned int current_swap_generation_;
static unsigned int swaps_this_generation_;
static unsigned int last_multiswap_generation_;
#endif
DISALLOW_COPY_AND_ASSIGN(NativeViewGLSurfaceEGL);
};
// Encapsulates a pbuffer EGL surface.
class GL_EXPORT PbufferGLSurfaceEGL : public GLSurfaceEGL {
public:
explicit PbufferGLSurfaceEGL(const gfx::Size& size);
// Implement GLSurface.
bool Initialize(GLSurfaceFormat format) override;
void Destroy() override;
bool IsOffscreen() override;
gfx::SwapResult SwapBuffers() override;
gfx::Size GetSize() override;
bool Resize(const gfx::Size& size,
float scale_factor,
bool has_alpha) override;
EGLSurface GetHandle() override;
void* GetShareHandle() override;
protected:
~PbufferGLSurfaceEGL() override;
private:
gfx::Size size_;
EGLSurface surface_;
DISALLOW_COPY_AND_ASSIGN(PbufferGLSurfaceEGL);
};
// SurfacelessEGL is used as Offscreen surface when platform supports
// KHR_surfaceless_context and GL_OES_surfaceless_context. This would avoid the
// need to create a dummy EGLsurface in case we render to client API targets.
class GL_EXPORT SurfacelessEGL : public GLSurfaceEGL {
public:
explicit SurfacelessEGL(const gfx::Size& size);
// Implement GLSurface.
bool Initialize(GLSurfaceFormat format) override;
void Destroy() override;
bool IsOffscreen() override;
bool IsSurfaceless() const override;
gfx::SwapResult SwapBuffers() override;
gfx::Size GetSize() override;
bool Resize(const gfx::Size& size,
float scale_factor,
bool has_alpha) override;
EGLSurface GetHandle() override;
void* GetShareHandle() override;
protected:
~SurfacelessEGL() override;
private:
gfx::Size size_;
DISALLOW_COPY_AND_ASSIGN(SurfacelessEGL);
};
} // namespace gl
#endif // UI_GL_GL_SURFACE_EGL_H_
|