105 lines
3.7 KiB
C++
105 lines
3.7 KiB
C++
|
|
/*
|
||
|
|
* Copyright 2022 Google LLC
|
||
|
|
*
|
||
|
|
* Use of this source code is governed by a BSD-style license that can be
|
||
|
|
* found in the LICENSE file.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "tools/graphite/dawn/GraphiteDawnTestContext.h"
|
||
|
|
|
||
|
|
#include "include/gpu/graphite/Context.h"
|
||
|
|
#include "include/gpu/graphite/ContextOptions.h"
|
||
|
|
#include "include/gpu/graphite/dawn/DawnTypes.h"
|
||
|
|
#include "include/gpu/graphite/dawn/DawnUtils.h"
|
||
|
|
#include "include/private/base/SkOnce.h"
|
||
|
|
|
||
|
|
#include "dawn/dawn_proc.h"
|
||
|
|
|
||
|
|
#define LOG_ADAPTER 0
|
||
|
|
|
||
|
|
namespace skiatest::graphite {
|
||
|
|
|
||
|
|
std::unique_ptr<GraphiteTestContext> DawnTestContext::Make() {
|
||
|
|
static std::unique_ptr<dawn::native::Instance> gInstance;
|
||
|
|
static dawn::native::Adapter gAdapter;
|
||
|
|
static SkOnce gOnce;
|
||
|
|
|
||
|
|
gOnce([]{
|
||
|
|
gInstance = std::make_unique<dawn::native::Instance>();
|
||
|
|
|
||
|
|
gInstance->DiscoverDefaultAdapters();
|
||
|
|
DawnProcTable backendProcs = dawn::native::GetProcs();
|
||
|
|
dawnProcSetProcs(&backendProcs);
|
||
|
|
|
||
|
|
std::vector<dawn::native::Adapter> adapters = gInstance->GetAdapters();
|
||
|
|
SkASSERT(!adapters.empty());
|
||
|
|
// Sort adapters by adapterType(DiscreteGPU, IntegratedGPU, CPU) and
|
||
|
|
// backendType(WebGPU, D3D11, D3D12, Metal, Vulkan, OpenGL, OpenGLES).
|
||
|
|
std::sort(
|
||
|
|
adapters.begin(), adapters.end(),
|
||
|
|
[](dawn::native::Adapter a, dawn::native::Adapter b) {
|
||
|
|
wgpu::AdapterProperties propA;
|
||
|
|
wgpu::AdapterProperties propB;
|
||
|
|
a.GetProperties(&propA);
|
||
|
|
b.GetProperties(&propB);
|
||
|
|
return std::tuple(propA.adapterType, propA.backendType) <
|
||
|
|
std::tuple(propB.adapterType, propB.backendType);
|
||
|
|
});
|
||
|
|
|
||
|
|
gAdapter = adapters.front();
|
||
|
|
|
||
|
|
#if LOG_ADAPTER
|
||
|
|
wgpu::AdapterProperties properties;
|
||
|
|
gAdapter.GetProperties(&properties);
|
||
|
|
SkDebugf("GPU: %s\nDriver: %s\n", properties.name, properties.driverDescription);
|
||
|
|
#endif
|
||
|
|
});
|
||
|
|
|
||
|
|
std::array<wgpu::FeatureName, 2> features = {
|
||
|
|
wgpu::FeatureName::DepthClipControl,
|
||
|
|
wgpu::FeatureName::Depth32FloatStencil8,
|
||
|
|
};
|
||
|
|
wgpu::DeviceDescriptor desc;
|
||
|
|
desc.requiredFeaturesCount = features.size();
|
||
|
|
desc.requiredFeatures = features.data();
|
||
|
|
|
||
|
|
#if !defined(SK_DEBUG)
|
||
|
|
wgpu::DawnTogglesDescriptor deviceTogglesDesc;
|
||
|
|
std::array<const char*, 1> toggles = {
|
||
|
|
"skip_validation",
|
||
|
|
};
|
||
|
|
deviceTogglesDesc.enabledTogglesCount = toggles.size();
|
||
|
|
deviceTogglesDesc.enabledToggles = toggles.data();
|
||
|
|
desc.nextInChain = &deviceTogglesDesc;
|
||
|
|
#endif
|
||
|
|
auto device = wgpu::Device::Acquire(gAdapter.CreateDevice(&desc));
|
||
|
|
SkASSERT(device);
|
||
|
|
device.SetUncapturedErrorCallback(
|
||
|
|
[](WGPUErrorType type, const char* message, void*) {
|
||
|
|
SkDebugf("Device error: %s\n", message);
|
||
|
|
},
|
||
|
|
0);
|
||
|
|
device.SetDeviceLostCallback(
|
||
|
|
[](WGPUDeviceLostReason reason, const char* message, void*) {
|
||
|
|
if (reason != WGPUDeviceLostReason_Destroyed) {
|
||
|
|
SK_ABORT("Device lost: %s\n", message);
|
||
|
|
}
|
||
|
|
},
|
||
|
|
0);
|
||
|
|
|
||
|
|
skgpu::graphite::DawnBackendContext backendContext;
|
||
|
|
backendContext.fDevice = device;
|
||
|
|
backendContext.fQueue = device.GetQueue();
|
||
|
|
return std::unique_ptr<GraphiteTestContext>(new DawnTestContext(backendContext));
|
||
|
|
}
|
||
|
|
|
||
|
|
std::unique_ptr<skgpu::graphite::Context> DawnTestContext::makeContext() {
|
||
|
|
skgpu::graphite::ContextOptions contextOptions;
|
||
|
|
contextOptions.fStoreContextRefInRecorder = true; // Needed to make synchronous readPixels work
|
||
|
|
return skgpu::graphite::ContextFactory::MakeDawn(fBackendContext,
|
||
|
|
contextOptions);
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace skiatest::graphite
|
||
|
|
|