Hash :
e8a3493f
Author :
Date :
2024-02-14T21:51:00
Initialize DisplayWgpu This change adds basic initialize to DisplayWgpu as well as adding APIs for DisplayGLX and DisplayWgpu. These APIs are necessary to ensure DisplayWgpu doesn't pull in necessary X11 headers that break builds. Bug: angleproject:8477 Change-Id: Icc6d9e7246a741def7a0337a296f9c1f9cec1415 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/5259979 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Commit-Queue: Liza Burakova <liza@chromium.org>
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
# Copyright 2022 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../../../gni/angle.gni")
declare_args() {
angle_enable_gl_null = true
}
gl_backend_sources = [
"BlitGL.cpp",
"BlitGL.h",
"BufferGL.cpp",
"BufferGL.h",
"ClearMultiviewGL.cpp",
"ClearMultiviewGL.h",
"CompilerGL.cpp",
"CompilerGL.h",
"ContextGL.cpp",
"ContextGL.h",
"DispatchTableGL_autogen.cpp",
"DispatchTableGL_autogen.h",
"DisplayGL.cpp",
"DisplayGL.h",
"FenceNVGL.cpp",
"FenceNVGL.h",
"FramebufferGL.cpp",
"FramebufferGL.h",
"FunctionsGL.cpp",
"FunctionsGL.h",
"ImageGL.cpp",
"ImageGL.h",
"MemoryObjectGL.cpp",
"MemoryObjectGL.h",
"PLSProgramCache.cpp",
"PLSProgramCache.h",
"ProgramExecutableGL.cpp",
"ProgramExecutableGL.h",
"ProgramGL.cpp",
"ProgramGL.h",
"ProgramPipelineGL.cpp",
"ProgramPipelineGL.h",
"QueryGL.cpp",
"QueryGL.h",
"RenderbufferGL.cpp",
"RenderbufferGL.h",
"RendererGL.cpp",
"RendererGL.h",
"SamplerGL.cpp",
"SamplerGL.h",
"SemaphoreGL.cpp",
"SemaphoreGL.h",
"ShaderGL.cpp",
"ShaderGL.h",
"StateManagerGL.cpp",
"StateManagerGL.h",
"SurfaceGL.cpp",
"SurfaceGL.h",
"SyncGL.cpp",
"SyncGL.h",
"TextureGL.cpp",
"TextureGL.h",
"TransformFeedbackGL.cpp",
"TransformFeedbackGL.h",
"VertexArrayGL.cpp",
"VertexArrayGL.h",
"formatutilsgl.cpp",
"formatutilsgl.h",
"functionsgl_enums.h",
"functionsgl_typedefs.h",
"renderergl_utils.cpp",
"renderergl_utils.h",
]
if (is_win) {
gl_backend_sources += [
"../../../third_party/khronos/GL/wglext.h",
"wgl/ContextWGL.cpp",
"wgl/ContextWGL.h",
"wgl/D3DTextureSurfaceWGL.cpp",
"wgl/D3DTextureSurfaceWGL.h",
"wgl/DXGISwapChainWindowSurfaceWGL.cpp",
"wgl/DXGISwapChainWindowSurfaceWGL.h",
"wgl/DisplayWGL.cpp",
"wgl/DisplayWGL.h",
"wgl/FunctionsWGL.cpp",
"wgl/FunctionsWGL.h",
"wgl/PbufferSurfaceWGL.cpp",
"wgl/PbufferSurfaceWGL.h",
"wgl/RendererWGL.cpp",
"wgl/RendererWGL.h",
"wgl/SurfaceWGL.h",
"wgl/WindowSurfaceWGL.cpp",
"wgl/WindowSurfaceWGL.h",
"wgl/functionswgl_typedefs.h",
"wgl/wgl_utils.cpp",
"wgl/wgl_utils.h",
]
}
if (angle_use_x11) {
gl_backend_sources += [
"glx/DisplayGLX.cpp",
"glx/DisplayGLX.h",
"glx/DisplayGLX_api.h",
"glx/FunctionsGLX.cpp",
"glx/FunctionsGLX.h",
"glx/PbufferSurfaceGLX.cpp",
"glx/PbufferSurfaceGLX.h",
"glx/PixmapSurfaceGLX.cpp",
"glx/PixmapSurfaceGLX.h",
"glx/SurfaceGLX.h",
"glx/WindowSurfaceGLX.cpp",
"glx/WindowSurfaceGLX.h",
"glx/functionsglx_typedefs.h",
"glx/glx_utils.cpp",
"glx/glx_utils.h",
"glx/platform_glx.h",
]
}
if (is_android || is_linux || is_chromeos) {
gl_backend_sources += [
"egl/ContextEGL.cpp",
"egl/ContextEGL.h",
"egl/DeviceEGL.cpp",
"egl/DeviceEGL.h",
"egl/DisplayEGL.cpp",
"egl/DisplayEGL.h",
"egl/DmaBufImageSiblingEGL.cpp",
"egl/DmaBufImageSiblingEGL.h",
"egl/ExternalImageSiblingEGL.h",
"egl/FunctionsEGL.cpp",
"egl/FunctionsEGL.h",
"egl/FunctionsEGLDL.cpp",
"egl/FunctionsEGLDL.h",
"egl/ImageEGL.cpp",
"egl/ImageEGL.h",
"egl/PbufferSurfaceEGL.cpp",
"egl/PbufferSurfaceEGL.h",
"egl/RendererEGL.cpp",
"egl/RendererEGL.h",
"egl/SurfaceEGL.cpp",
"egl/SurfaceEGL.h",
"egl/SyncEGL.cpp",
"egl/SyncEGL.h",
"egl/WindowSurfaceEGL.cpp",
"egl/WindowSurfaceEGL.h",
"egl/egl_utils.cpp",
"egl/egl_utils.h",
"egl/functionsegl_typedefs.h",
]
}
if (is_android) {
gl_backend_sources += [
"egl/android/DisplayAndroid.cpp",
"egl/android/DisplayAndroid.h",
"egl/android/NativeBufferImageSiblingAndroid.cpp",
"egl/android/NativeBufferImageSiblingAndroid.h",
]
}
if (angle_enable_cgl) {
gl_backend_sources += [
"cgl/ContextCGL.cpp",
"cgl/ContextCGL.h",
"cgl/DeviceCGL.cpp",
"cgl/DeviceCGL.h",
"cgl/DisplayCGL.h",
"cgl/DisplayCGL.mm",
"cgl/IOSurfaceSurfaceCGL.cpp",
"cgl/IOSurfaceSurfaceCGL.h",
"cgl/PbufferSurfaceCGL.cpp",
"cgl/PbufferSurfaceCGL.h",
"cgl/WindowSurfaceCGL.h",
"cgl/WindowSurfaceCGL.mm",
]
}
if (angle_enable_eagl) {
gl_backend_sources += [
"eagl/ContextEAGL.cpp",
"eagl/ContextEAGL.h",
"eagl/DeviceEAGL.cpp",
"eagl/DeviceEAGL.h",
"eagl/DisplayEAGL.h",
"eagl/DisplayEAGL.mm",
"eagl/FunctionsEAGL.h",
"eagl/FunctionsEAGL.mm",
"eagl/IOSurfaceSurfaceEAGL.h",
"eagl/IOSurfaceSurfaceEAGL.mm",
"eagl/PbufferSurfaceEAGL.cpp",
"eagl/PbufferSurfaceEAGL.h",
"eagl/WindowSurfaceEAGL.h",
"eagl/WindowSurfaceEAGL.mm",
]
}
if (angle_enable_gl_null) {
gl_backend_sources += [
"null_functions.cpp",
"null_functions.h",
]
}