Home
last modified time | relevance | path

Searched refs:GPUShaderModule (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DGPUShaderModule.cpp26 GPUShaderModule::GPUShaderModule(wgpu::ShaderModule shader, std::shared_ptr<AsyncRunner> async) in GPUShaderModule() function in wgpu::binding::GPUShaderModule
31 GPUShaderModule::compilationInfo(Napi::Env env) { in compilationInfo()
117 std::optional<std::string> GPUShaderModule::getLabel(Napi::Env) { in getLabel()
121 void GPUShaderModule::setLabel(Napi::Env, std::optional<std::string> value) { in setLabel()
DGPUShaderModule.h28 class GPUShaderModule final : public interop::GPUShaderModule {
30 GPUShaderModule(wgpu::ShaderModule shader, std::shared_ptr<AsyncRunner> async);
DCMakeLists.txt60 "GPUShaderModule.cpp"
61 "GPUShaderModule.h"
DGPUDevice.cpp254 interop::Interface<interop::GPUShaderModule> GPUDevice::createShaderModule( in createShaderModule()
266 return interop::GPUShaderModule::Create<GPUShaderModule>( in createShaderModule()
DGPUDevice.h56 interop::Interface<interop::GPUShaderModule> createShaderModule(
DConverter.h52 DECLARE_IMPL(GPUShaderModule);
DConverter.cpp424 out.module = *in.module.As<GPUShaderModule>(); in Convert()