mirror of https://github.com/AxioDL/metaforce.git
Revert local changes I accidentally pushed like an idiot
This commit is contained in:
parent
46a93166ef
commit
65f5b873c8
|
@ -36,7 +36,7 @@ if (DAWN_ENABLE_D3D12)
|
||||||
target_sources(aurora PRIVATE lib/dawn/D3D12Binding.cpp)
|
target_sources(aurora PRIVATE lib/dawn/D3D12Binding.cpp)
|
||||||
endif ()
|
endif ()
|
||||||
if (DAWN_ENABLE_DESKTOP_GL)
|
if (DAWN_ENABLE_DESKTOP_GL)
|
||||||
target_compile_definitions(aurora PRIVATE DAWN_ENABLE_BACKEND_OPENGL DAWN_ENABLE_BACKEND_DESKTOP_GL DAWN_ENABLE_BACKEND_OPENGLES)
|
target_compile_definitions(aurora PRIVATE DAWN_ENABLE_BACKEND_OPENGL DAWN_ENABLE_BACKEND_DESKTOP_GL)
|
||||||
target_sources(aurora PRIVATE lib/dawn/OpenGLBinding.cpp)
|
target_sources(aurora PRIVATE lib/dawn/OpenGLBinding.cpp)
|
||||||
endif ()
|
endif ()
|
||||||
if (DAWN_ENABLE_NULL)
|
if (DAWN_ENABLE_NULL)
|
||||||
|
|
|
@ -313,8 +313,7 @@ static void pipeline_worker() {
|
||||||
|
|
||||||
void initialize() {
|
void initialize() {
|
||||||
// No async pipelines for OpenGL (ES)
|
// No async pipelines for OpenGL (ES)
|
||||||
if (gpu::g_backendType != wgpu::BackendType::OpenGL && gpu::g_backendType != wgpu::BackendType::OpenGLES &&
|
if (gpu::g_backendType != wgpu::BackendType::OpenGL && gpu::g_backendType != wgpu::BackendType::OpenGLES) {
|
||||||
gpu::g_backendType != wgpu::BackendType::Vulkan) {
|
|
||||||
g_pipelineThread = std::thread(pipeline_worker);
|
g_pipelineThread = std::thread(pipeline_worker);
|
||||||
g_hasPipelineThread = true;
|
g_hasPipelineThread = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue