mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-08 21:19:14 +00:00
Refactor common code out from BackendD3D12 to BackendD3D
Those common code will be shared between BackendD3D11 and BackendD3D12. And this change will not change any logic. Change-Id: I52a7b1932983d988e1b9656283a123b1c1c82531 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/124062 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Austin Eng <enga@chromium.org> Commit-Queue: Peng Huang <penghuang@chromium.org>
This commit is contained in:
parent
69e1c4b638
commit
6118351432
@ -397,12 +397,16 @@ source_set("sources") {
|
|||||||
|
|
||||||
if (dawn_enable_d3d12) {
|
if (dawn_enable_d3d12) {
|
||||||
sources += [
|
sources += [
|
||||||
|
"d3d/BackendD3D.cpp",
|
||||||
|
"d3d/BackendD3D.h",
|
||||||
"d3d/BlobD3D.cpp",
|
"d3d/BlobD3D.cpp",
|
||||||
"d3d/BlobD3D.h",
|
"d3d/BlobD3D.h",
|
||||||
"d3d/D3DError.cpp",
|
"d3d/D3DError.cpp",
|
||||||
"d3d/D3DError.h",
|
"d3d/D3DError.h",
|
||||||
"d3d/PlatformFunctions.cpp",
|
"d3d/PlatformFunctions.cpp",
|
||||||
"d3d/PlatformFunctions.h",
|
"d3d/PlatformFunctions.h",
|
||||||
|
"d3d/UtilsD3D.cpp",
|
||||||
|
"d3d/UtilsD3D.h",
|
||||||
"d3d/d3d_platform.h",
|
"d3d/d3d_platform.h",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -253,12 +253,16 @@ endif()
|
|||||||
|
|
||||||
if (DAWN_ENABLE_D3D12)
|
if (DAWN_ENABLE_D3D12)
|
||||||
target_sources(dawn_native PRIVATE
|
target_sources(dawn_native PRIVATE
|
||||||
|
"d3d/BackendD3D.cpp"
|
||||||
|
"d3d/BackendD3D.h"
|
||||||
"d3d/BlobD3D.cpp"
|
"d3d/BlobD3D.cpp"
|
||||||
"d3d/BlobD3D.h"
|
"d3d/BlobD3D.h"
|
||||||
"d3d/D3DError.cpp"
|
"d3d/D3DError.cpp"
|
||||||
"d3d/D3DError.h"
|
"d3d/D3DError.h"
|
||||||
"d3d/PlatformFunctions.cpp"
|
"d3d/PlatformFunctions.cpp"
|
||||||
"d3d/PlatformFunctions.h"
|
"d3d/PlatformFunctions.h"
|
||||||
|
"d3d/UtilsD3D.cpp"
|
||||||
|
"d3d/UtilsD3D.h"
|
||||||
"d3d/d3d_platform.h"
|
"d3d/d3d_platform.h"
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
240
src/dawn/native/d3d/BackendD3D.cpp
Normal file
240
src/dawn/native/d3d/BackendD3D.cpp
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
// Copyright 2023 The Dawn Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include "dawn/native/d3d/BackendD3D.h"
|
||||||
|
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
#include "dawn/common/Log.h"
|
||||||
|
#include "dawn/native/Instance.h"
|
||||||
|
#include "dawn/native/d3d/D3DError.h"
|
||||||
|
#include "dawn/native/d3d/PlatformFunctions.h"
|
||||||
|
#include "dawn/native/d3d/UtilsD3D.h"
|
||||||
|
|
||||||
|
namespace dawn::native::d3d {
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
ResultOrError<ComPtr<IDXGIFactory4>> CreateFactory(const PlatformFunctions* functions,
|
||||||
|
BackendValidationLevel validationLevel) {
|
||||||
|
ComPtr<IDXGIFactory4> factory;
|
||||||
|
|
||||||
|
uint32_t dxgiFactoryFlags = 0;
|
||||||
|
if (validationLevel != BackendValidationLevel::Disabled) {
|
||||||
|
// Enable additional debug layers.
|
||||||
|
dxgiFactoryFlags |= DXGI_CREATE_FACTORY_DEBUG;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (FAILED(functions->createDxgiFactory2(dxgiFactoryFlags, IID_PPV_ARGS(&factory)))) {
|
||||||
|
return DAWN_INTERNAL_ERROR("Failed to create a DXGI factory");
|
||||||
|
}
|
||||||
|
|
||||||
|
ASSERT(factory != nullptr);
|
||||||
|
return std::move(factory);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // anonymous namespace
|
||||||
|
|
||||||
|
Backend::Backend(InstanceBase* instance, wgpu::BackendType type)
|
||||||
|
: BackendConnection(instance, type) {}
|
||||||
|
|
||||||
|
MaybeError Backend::Initialize(std::unique_ptr<PlatformFunctions> functions) {
|
||||||
|
mFunctions = std::move(functions);
|
||||||
|
|
||||||
|
// Check if DXC is available and cache DXC version information
|
||||||
|
if (!mFunctions->IsDXCBinaryAvailable()) {
|
||||||
|
// DXC version information is not available if DXC binaries are not available.
|
||||||
|
mDxcVersionInfo = DxcUnavailable{"DXC binary is not available"};
|
||||||
|
} else {
|
||||||
|
// Check the DXC version information and validate them being not lower than pre-defined
|
||||||
|
// minimum version.
|
||||||
|
AcquireDxcVersionInformation();
|
||||||
|
|
||||||
|
// Check that DXC version information is acquired successfully.
|
||||||
|
if (std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo)) {
|
||||||
|
const DxcVersionInfo& dxcVersionInfo = std::get<DxcVersionInfo>(mDxcVersionInfo);
|
||||||
|
|
||||||
|
// The required minimum version for DXC compiler and validator.
|
||||||
|
// Notes about requirement consideration:
|
||||||
|
// * DXC version 1.4 has some known issues when compiling Tint generated HLSL program,
|
||||||
|
// please
|
||||||
|
// refer to crbug.com/tint/1719
|
||||||
|
// * Windows SDK 20348 provides DXC compiler and validator version 1.6
|
||||||
|
// Here the minimum version requirement for DXC compiler and validator are both set
|
||||||
|
// to 1.6.
|
||||||
|
constexpr uint64_t minimumCompilerMajorVersion = 1;
|
||||||
|
constexpr uint64_t minimumCompilerMinorVersion = 6;
|
||||||
|
constexpr uint64_t minimumValidatorMajorVersion = 1;
|
||||||
|
constexpr uint64_t minimumValidatorMinorVersion = 6;
|
||||||
|
|
||||||
|
// Check that DXC compiler and validator version are not lower than minimum.
|
||||||
|
if (dxcVersionInfo.DxcCompilerVersion <
|
||||||
|
MakeDXCVersion(minimumCompilerMajorVersion, minimumCompilerMinorVersion) ||
|
||||||
|
dxcVersionInfo.DxcValidatorVersion <
|
||||||
|
MakeDXCVersion(minimumValidatorMajorVersion, minimumValidatorMinorVersion)) {
|
||||||
|
// If DXC version is lower than required minimum, set mDxcVersionInfo to
|
||||||
|
// DxcUnavailable to indicate that DXC is not available.
|
||||||
|
std::ostringstream ss;
|
||||||
|
ss << "DXC version too low: dxil.dll required version 1.6, actual version "
|
||||||
|
<< (dxcVersionInfo.DxcValidatorVersion >> 32) << "."
|
||||||
|
<< (dxcVersionInfo.DxcValidatorVersion & ((uint64_t(1) << 32) - 1))
|
||||||
|
<< ", dxcompiler.dll required version 1.6, actual version "
|
||||||
|
<< (dxcVersionInfo.DxcCompilerVersion >> 32) << "."
|
||||||
|
<< (dxcVersionInfo.DxcCompilerVersion & ((uint64_t(1) << 32) - 1));
|
||||||
|
mDxcVersionInfo = DxcUnavailable{ss.str()};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto instance = GetInstance();
|
||||||
|
|
||||||
|
DAWN_TRY_ASSIGN(mFactory,
|
||||||
|
CreateFactory(mFunctions.get(), instance->GetBackendValidationLevel()));
|
||||||
|
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
ComPtr<IDXGIFactory4> Backend::GetFactory() const {
|
||||||
|
return mFactory;
|
||||||
|
}
|
||||||
|
|
||||||
|
MaybeError Backend::EnsureDxcLibrary() {
|
||||||
|
if (mDxcLibrary == nullptr) {
|
||||||
|
DAWN_TRY(CheckHRESULT(
|
||||||
|
mFunctions->dxcCreateInstance(CLSID_DxcLibrary, IID_PPV_ARGS(&mDxcLibrary)),
|
||||||
|
"DXC create library"));
|
||||||
|
ASSERT(mDxcLibrary != nullptr);
|
||||||
|
}
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
MaybeError Backend::EnsureDxcCompiler() {
|
||||||
|
if (mDxcCompiler == nullptr) {
|
||||||
|
DAWN_TRY(CheckHRESULT(
|
||||||
|
mFunctions->dxcCreateInstance(CLSID_DxcCompiler, IID_PPV_ARGS(&mDxcCompiler)),
|
||||||
|
"DXC create compiler"));
|
||||||
|
ASSERT(mDxcCompiler != nullptr);
|
||||||
|
}
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
MaybeError Backend::EnsureDxcValidator() {
|
||||||
|
if (mDxcValidator == nullptr) {
|
||||||
|
DAWN_TRY(CheckHRESULT(
|
||||||
|
mFunctions->dxcCreateInstance(CLSID_DxcValidator, IID_PPV_ARGS(&mDxcValidator)),
|
||||||
|
"DXC create validator"));
|
||||||
|
ASSERT(mDxcValidator != nullptr);
|
||||||
|
}
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
ComPtr<IDxcLibrary> Backend::GetDxcLibrary() const {
|
||||||
|
ASSERT(mDxcLibrary != nullptr);
|
||||||
|
return mDxcLibrary;
|
||||||
|
}
|
||||||
|
|
||||||
|
ComPtr<IDxcCompiler> Backend::GetDxcCompiler() const {
|
||||||
|
ASSERT(mDxcCompiler != nullptr);
|
||||||
|
return mDxcCompiler;
|
||||||
|
}
|
||||||
|
|
||||||
|
ComPtr<IDxcValidator> Backend::GetDxcValidator() const {
|
||||||
|
ASSERT(mDxcValidator != nullptr);
|
||||||
|
return mDxcValidator;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Backend::AcquireDxcVersionInformation() {
|
||||||
|
ASSERT(std::holds_alternative<DxcUnavailable>(mDxcVersionInfo));
|
||||||
|
|
||||||
|
auto tryAcquireDxcVersionInfo = [this]() -> ResultOrError<DxcVersionInfo> {
|
||||||
|
DAWN_TRY(EnsureDxcValidator());
|
||||||
|
DAWN_TRY(EnsureDxcCompiler());
|
||||||
|
|
||||||
|
ComPtr<IDxcVersionInfo> compilerVersionInfo;
|
||||||
|
|
||||||
|
DAWN_TRY(CheckHRESULT(mDxcCompiler.As(&compilerVersionInfo),
|
||||||
|
"D3D12 QueryInterface IDxcCompiler to IDxcVersionInfo"));
|
||||||
|
uint32_t compilerMajor, compilerMinor;
|
||||||
|
DAWN_TRY(CheckHRESULT(compilerVersionInfo->GetVersion(&compilerMajor, &compilerMinor),
|
||||||
|
"IDxcVersionInfo::GetVersion"));
|
||||||
|
|
||||||
|
ComPtr<IDxcVersionInfo> validatorVersionInfo;
|
||||||
|
|
||||||
|
DAWN_TRY(CheckHRESULT(mDxcValidator.As(&validatorVersionInfo),
|
||||||
|
"D3D12 QueryInterface IDxcValidator to IDxcVersionInfo"));
|
||||||
|
uint32_t validatorMajor, validatorMinor;
|
||||||
|
DAWN_TRY(CheckHRESULT(validatorVersionInfo->GetVersion(&validatorMajor, &validatorMinor),
|
||||||
|
"IDxcVersionInfo::GetVersion"));
|
||||||
|
|
||||||
|
// Pack major and minor version number into a single version number.
|
||||||
|
uint64_t compilerVersion = MakeDXCVersion(compilerMajor, compilerMinor);
|
||||||
|
uint64_t validatorVersion = MakeDXCVersion(validatorMajor, validatorMinor);
|
||||||
|
return DxcVersionInfo{compilerVersion, validatorVersion};
|
||||||
|
};
|
||||||
|
|
||||||
|
auto dxcVersionInfoOrError = tryAcquireDxcVersionInfo();
|
||||||
|
|
||||||
|
if (dxcVersionInfoOrError.IsSuccess()) {
|
||||||
|
// Cache the DXC version information.
|
||||||
|
mDxcVersionInfo = dxcVersionInfoOrError.AcquireSuccess();
|
||||||
|
} else {
|
||||||
|
// Error occurs when acquiring DXC version information, set the cache to unavailable and
|
||||||
|
// record the error message.
|
||||||
|
std::string errorMessage = dxcVersionInfoOrError.AcquireError()->GetFormattedMessage();
|
||||||
|
dawn::ErrorLog() << errorMessage;
|
||||||
|
mDxcVersionInfo = DxcUnavailable{errorMessage};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return both DXC compiler and DXC validator version, assert that DXC version information is
|
||||||
|
// acquired succesfully.
|
||||||
|
DxcVersionInfo Backend::GetDxcVersion() const {
|
||||||
|
ASSERT(std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo));
|
||||||
|
return DxcVersionInfo(std::get<DxcVersionInfo>(mDxcVersionInfo));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return true if and only if DXC binary is avaliable, and the DXC version is validated to
|
||||||
|
// be no older than a pre-defined minimum version.
|
||||||
|
bool Backend::IsDXCAvailable() const {
|
||||||
|
// mDxcVersionInfo hold DxcVersionInfo instead of DxcUnavailable if and only if DXC binaries and
|
||||||
|
// version are validated in `Initialize`.
|
||||||
|
return std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Return true if and only if IsDXCAvailable() return true, and the DXC compiler and validator
|
||||||
|
// version are validated to be no older than the minimium version given in parameter.
|
||||||
|
bool Backend::IsDXCAvailableAndVersionAtLeast(uint64_t minimumCompilerMajorVersion,
|
||||||
|
uint64_t minimumCompilerMinorVersion,
|
||||||
|
uint64_t minimumValidatorMajorVersion,
|
||||||
|
uint64_t minimumValidatorMinorVersion) const {
|
||||||
|
// mDxcVersionInfo hold DxcVersionInfo instead of DxcUnavailable if and only if DXC binaries and
|
||||||
|
// version are validated in `Initialize`.
|
||||||
|
if (std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo)) {
|
||||||
|
const DxcVersionInfo& dxcVersionInfo = std::get<DxcVersionInfo>(mDxcVersionInfo);
|
||||||
|
// Check that DXC compiler and validator version are not lower than given requirements.
|
||||||
|
if (dxcVersionInfo.DxcCompilerVersion >=
|
||||||
|
MakeDXCVersion(minimumCompilerMajorVersion, minimumCompilerMinorVersion) &&
|
||||||
|
dxcVersionInfo.DxcValidatorVersion >=
|
||||||
|
MakeDXCVersion(minimumValidatorMajorVersion, minimumValidatorMinorVersion)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PlatformFunctions* Backend::GetFunctions() const {
|
||||||
|
return mFunctions.get();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace dawn::native::d3d
|
103
src/dawn/native/d3d/BackendD3D.h
Normal file
103
src/dawn/native/d3d/BackendD3D.h
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
// Copyright 2023 The Dawn Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef SRC_DAWN_NATIVE_D3D_BACKENDD3D_H_
|
||||||
|
#define SRC_DAWN_NATIVE_D3D_BACKENDD3D_H_
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <string>
|
||||||
|
#include <variant>
|
||||||
|
|
||||||
|
#include "dawn/native/BackendConnection.h"
|
||||||
|
|
||||||
|
#include "dawn/native/d3d12/d3d12_platform.h"
|
||||||
|
|
||||||
|
namespace dawn::native::d3d {
|
||||||
|
|
||||||
|
class PlatformFunctions;
|
||||||
|
|
||||||
|
// DxcVersionInfo holds both DXC compiler (dxcompiler.dll) version and DXC validator (dxil.dll)
|
||||||
|
// version, which are not necessarily identical. Both are in uint64_t type, as the result of
|
||||||
|
// MakeDXCVersion.
|
||||||
|
struct DxcVersionInfo {
|
||||||
|
uint64_t DxcCompilerVersion;
|
||||||
|
uint64_t DxcValidatorVersion;
|
||||||
|
};
|
||||||
|
|
||||||
|
// If DXC version information is not avaliable due to no DXC binary or error occurs when acquiring
|
||||||
|
// version, DxcUnavailable indicates the version information being unavailable and holds the
|
||||||
|
// detailed error information.
|
||||||
|
struct DxcUnavailable {
|
||||||
|
std::string ErrorMessage;
|
||||||
|
};
|
||||||
|
|
||||||
|
class Backend : public BackendConnection {
|
||||||
|
public:
|
||||||
|
Backend(InstanceBase* instance, wgpu::BackendType type);
|
||||||
|
|
||||||
|
MaybeError Initialize(std::unique_ptr<PlatformFunctions> functions);
|
||||||
|
|
||||||
|
ComPtr<IDXGIFactory4> GetFactory() const;
|
||||||
|
|
||||||
|
MaybeError EnsureDxcLibrary();
|
||||||
|
MaybeError EnsureDxcCompiler();
|
||||||
|
MaybeError EnsureDxcValidator();
|
||||||
|
ComPtr<IDxcLibrary> GetDxcLibrary() const;
|
||||||
|
ComPtr<IDxcCompiler> GetDxcCompiler() const;
|
||||||
|
ComPtr<IDxcValidator> GetDxcValidator() const;
|
||||||
|
|
||||||
|
// Return true if and only if DXC binary is avaliable, and the DXC compiler and validator
|
||||||
|
// version are validated to be no older than a specific minimium version, currently 1.6.
|
||||||
|
bool IsDXCAvailable() const;
|
||||||
|
|
||||||
|
// Return true if and only if mIsDXCAvailable is true, and the DXC compiler and validator
|
||||||
|
// version are validated to be no older than the minimium version given in parameter.
|
||||||
|
bool IsDXCAvailableAndVersionAtLeast(uint64_t minimumCompilerMajorVersion,
|
||||||
|
uint64_t minimumCompilerMinorVersion,
|
||||||
|
uint64_t minimumValidatorMajorVersion,
|
||||||
|
uint64_t minimumValidatorMinorVersion) const;
|
||||||
|
|
||||||
|
// Return the DXC version information cached in mDxcVersionInformation, assert that the version
|
||||||
|
// information is valid. Must be called after ensuring `IsDXCAvailable()` return true.
|
||||||
|
DxcVersionInfo GetDxcVersion() const;
|
||||||
|
|
||||||
|
const PlatformFunctions* GetFunctions() const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Acquiring DXC version information and store the result in mDxcVersionInfo. This function
|
||||||
|
// should be called only once, during startup in `Initialize`.
|
||||||
|
void AcquireDxcVersionInformation();
|
||||||
|
|
||||||
|
// Keep mFunctions as the first member so that in the destructor it is freed last. Otherwise
|
||||||
|
// the D3D12 DLLs are unloaded before we are done using them.
|
||||||
|
std::unique_ptr<PlatformFunctions> mFunctions;
|
||||||
|
ComPtr<IDXGIFactory4> mFactory;
|
||||||
|
ComPtr<IDxcLibrary> mDxcLibrary;
|
||||||
|
ComPtr<IDxcCompiler> mDxcCompiler;
|
||||||
|
ComPtr<IDxcValidator> mDxcValidator;
|
||||||
|
|
||||||
|
// DXC binaries and DXC version information are checked when start up in `Initialize`. There are
|
||||||
|
// two possible states:
|
||||||
|
// 1. The DXC binary is not available, or error occurs when checking the version information
|
||||||
|
// and therefore no DXC version information available, or the DXC version is lower than
|
||||||
|
// requested minumum and therefore DXC is not available, represented by DxcUnavailable
|
||||||
|
// in which a error message is held;
|
||||||
|
// 3. The DXC version information is acquired successfully and validated not lower than
|
||||||
|
// requested minimum, stored in DxcVersionInfo.
|
||||||
|
std::variant<DxcUnavailable, DxcVersionInfo> mDxcVersionInfo;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace dawn::native::d3d
|
||||||
|
|
||||||
|
#endif // SRC_DAWN_NATIVE_D3D_BACKENDD3D_H_
|
77
src/dawn/native/d3d/UtilsD3D.cpp
Normal file
77
src/dawn/native/d3d/UtilsD3D.cpp
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
// Copyright 2023 The Dawn Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#include "dawn/native/d3d/UtilsD3D.h"
|
||||||
|
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
namespace dawn::native::d3d {
|
||||||
|
|
||||||
|
ResultOrError<std::wstring> ConvertStringToWstring(std::string_view s) {
|
||||||
|
size_t len = s.length();
|
||||||
|
if (len == 0) {
|
||||||
|
return std::wstring();
|
||||||
|
}
|
||||||
|
int numChars = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, s.data(), len, nullptr, 0);
|
||||||
|
if (numChars == 0) {
|
||||||
|
return DAWN_INTERNAL_ERROR("Failed to convert string to wide string");
|
||||||
|
}
|
||||||
|
std::wstring result;
|
||||||
|
result.resize(numChars);
|
||||||
|
int numConvertedChars =
|
||||||
|
MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, s.data(), len, &result[0], numChars);
|
||||||
|
if (numConvertedChars != numChars) {
|
||||||
|
return DAWN_INTERNAL_ERROR("Failed to convert string to wide string");
|
||||||
|
}
|
||||||
|
return std::move(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsTypeless(DXGI_FORMAT format) {
|
||||||
|
// List generated from <dxgiformat.h>
|
||||||
|
switch (format) {
|
||||||
|
case DXGI_FORMAT_R32G32B32A32_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R32G32B32_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R16G16B16A16_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R32G32_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R32G8X24_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R32_FLOAT_X8X24_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R10G10B10A2_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R8G8B8A8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R16G16_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R32_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R24G8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R24_UNORM_X8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R8G8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R16_TYPELESS:
|
||||||
|
case DXGI_FORMAT_R8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC1_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC2_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC3_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC4_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC5_TYPELESS:
|
||||||
|
case DXGI_FORMAT_B8G8R8A8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_B8G8R8X8_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC6H_TYPELESS:
|
||||||
|
case DXGI_FORMAT_BC7_TYPELESS:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint64_t MakeDXCVersion(uint64_t majorVersion, uint64_t minorVersion) {
|
||||||
|
return (majorVersion << 32) + minorVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace dawn::native::d3d
|
33
src/dawn/native/d3d/UtilsD3D.h
Normal file
33
src/dawn/native/d3d/UtilsD3D.h
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
// Copyright 2023 The Dawn Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
#ifndef SRC_DAWN_NATIVE_D3D_UTILSD3D_H_
|
||||||
|
#define SRC_DAWN_NATIVE_D3D_UTILSD3D_H_
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
#include "dawn/native/Error.h"
|
||||||
|
#include "dawn/native/d3d/d3d_platform.h"
|
||||||
|
|
||||||
|
namespace dawn::native::d3d {
|
||||||
|
|
||||||
|
ResultOrError<std::wstring> ConvertStringToWstring(std::string_view s);
|
||||||
|
|
||||||
|
bool IsTypeless(DXGI_FORMAT format);
|
||||||
|
|
||||||
|
uint64_t MakeDXCVersion(uint64_t majorVersion, uint64_t minorVersion);
|
||||||
|
|
||||||
|
} // namespace dawn::native::d3d
|
||||||
|
|
||||||
|
#endif // SRC_DAWN_NATIVE_D3D_UTILSD3D_H_
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
#include "dawn/native/d3d12/BackendD3D12.h"
|
#include "dawn/native/d3d12/BackendD3D12.h"
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
#include "dawn/common/Log.h"
|
#include "dawn/common/Log.h"
|
||||||
@ -25,49 +26,8 @@
|
|||||||
#include "dawn/native/d3d12/UtilsD3D12.h"
|
#include "dawn/native/d3d12/UtilsD3D12.h"
|
||||||
|
|
||||||
namespace dawn::native::d3d12 {
|
namespace dawn::native::d3d12 {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
ResultOrError<ComPtr<IDXGIFactory4>> CreateFactory(const PlatformFunctions* functions,
|
|
||||||
BackendValidationLevel validationLevel,
|
|
||||||
bool beginCaptureOnStartup) {
|
|
||||||
ComPtr<IDXGIFactory4> factory;
|
|
||||||
|
|
||||||
uint32_t dxgiFactoryFlags = 0;
|
|
||||||
|
|
||||||
// Enable the debug layer (requires the Graphics Tools "optional feature").
|
|
||||||
{
|
|
||||||
if (validationLevel != BackendValidationLevel::Disabled) {
|
|
||||||
ComPtr<ID3D12Debug3> debugController;
|
|
||||||
if (SUCCEEDED(functions->d3d12GetDebugInterface(IID_PPV_ARGS(&debugController)))) {
|
|
||||||
ASSERT(debugController != nullptr);
|
|
||||||
debugController->EnableDebugLayer();
|
|
||||||
if (validationLevel == BackendValidationLevel::Full) {
|
|
||||||
debugController->SetEnableGPUBasedValidation(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Enable additional debug layers.
|
|
||||||
dxgiFactoryFlags |= DXGI_CREATE_FACTORY_DEBUG;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (beginCaptureOnStartup) {
|
|
||||||
ComPtr<IDXGraphicsAnalysis> graphicsAnalysis;
|
|
||||||
if (functions->dxgiGetDebugInterface1 != nullptr &&
|
|
||||||
SUCCEEDED(functions->dxgiGetDebugInterface1(0, IID_PPV_ARGS(&graphicsAnalysis)))) {
|
|
||||||
graphicsAnalysis->BeginCapture();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (FAILED(functions->createDxgiFactory2(dxgiFactoryFlags, IID_PPV_ARGS(&factory)))) {
|
|
||||||
return DAWN_INTERNAL_ERROR("Failed to create a DXGI factory");
|
|
||||||
}
|
|
||||||
|
|
||||||
ASSERT(factory != nullptr);
|
|
||||||
return std::move(factory);
|
|
||||||
}
|
|
||||||
|
|
||||||
ResultOrError<Ref<AdapterBase>> CreateAdapterFromIDXGIAdapter(Backend* backend,
|
ResultOrError<Ref<AdapterBase>> CreateAdapterFromIDXGIAdapter(Backend* backend,
|
||||||
ComPtr<IDXGIAdapter> dxgiAdapter,
|
ComPtr<IDXGIAdapter> dxgiAdapter,
|
||||||
const TogglesState& adapterToggles) {
|
const TogglesState& adapterToggles) {
|
||||||
@ -80,197 +40,42 @@ ResultOrError<Ref<AdapterBase>> CreateAdapterFromIDXGIAdapter(Backend* backend,
|
|||||||
return {std::move(adapter)};
|
return {std::move(adapter)};
|
||||||
}
|
}
|
||||||
|
|
||||||
} // anonymous namespace
|
} // namespace
|
||||||
|
|
||||||
Backend::Backend(InstanceBase* instance) : BackendConnection(instance, wgpu::BackendType::D3D12) {}
|
Backend::Backend(InstanceBase* instance) : Base(instance, wgpu::BackendType::D3D12) {}
|
||||||
|
|
||||||
MaybeError Backend::Initialize() {
|
MaybeError Backend::Initialize() {
|
||||||
mFunctions = std::make_unique<PlatformFunctions>();
|
auto functions = std::make_unique<PlatformFunctions>();
|
||||||
DAWN_TRY(mFunctions->LoadFunctions());
|
DAWN_TRY(functions->LoadFunctions());
|
||||||
|
|
||||||
// Check if DXC is available and cache DXC version information
|
|
||||||
if (!mFunctions->IsDXCBinaryAvailable()) {
|
|
||||||
// DXC version information is not available if DXC binaries are not available.
|
|
||||||
mDxcVersionInfo = DxcUnavailable{"DXC binary is not available"};
|
|
||||||
} else {
|
|
||||||
// Check the DXC version information and validate them being not lower than pre-defined
|
|
||||||
// minimum version.
|
|
||||||
AcquireDxcVersionInformation();
|
|
||||||
|
|
||||||
// Check that DXC version information is acquired successfully.
|
|
||||||
if (std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo)) {
|
|
||||||
const DxcVersionInfo& dxcVersionInfo = std::get<DxcVersionInfo>(mDxcVersionInfo);
|
|
||||||
|
|
||||||
// The required minimum version for DXC compiler and validator.
|
|
||||||
// Notes about requirement consideration:
|
|
||||||
// * DXC version 1.4 has some known issues when compiling Tint generated HLSL program,
|
|
||||||
// please
|
|
||||||
// refer to crbug.com/tint/1719
|
|
||||||
// * Windows SDK 20348 provides DXC compiler and validator version 1.6
|
|
||||||
// Here the minimum version requirement for DXC compiler and validator are both set
|
|
||||||
// to 1.6.
|
|
||||||
constexpr uint64_t minimumCompilerMajorVersion = 1;
|
|
||||||
constexpr uint64_t minimumCompilerMinorVersion = 6;
|
|
||||||
constexpr uint64_t minimumValidatorMajorVersion = 1;
|
|
||||||
constexpr uint64_t minimumValidatorMinorVersion = 6;
|
|
||||||
|
|
||||||
// Check that DXC compiler and validator version are not lower than minimum.
|
|
||||||
if (dxcVersionInfo.DxcCompilerVersion <
|
|
||||||
MakeDXCVersion(minimumCompilerMajorVersion, minimumCompilerMinorVersion) ||
|
|
||||||
dxcVersionInfo.DxcValidatorVersion <
|
|
||||||
MakeDXCVersion(minimumValidatorMajorVersion, minimumValidatorMinorVersion)) {
|
|
||||||
// If DXC version is lower than required minimum, set mDxcVersionInfo to
|
|
||||||
// DxcUnavailable to indicate that DXC is not available.
|
|
||||||
std::ostringstream ss;
|
|
||||||
ss << "DXC version too low: dxil.dll required version 1.6, actual version "
|
|
||||||
<< (dxcVersionInfo.DxcValidatorVersion >> 32) << "."
|
|
||||||
<< (dxcVersionInfo.DxcValidatorVersion & ((uint64_t(1) << 32) - 1))
|
|
||||||
<< ", dxcompiler.dll required version 1.6, actual version "
|
|
||||||
<< (dxcVersionInfo.DxcCompilerVersion >> 32) << "."
|
|
||||||
<< (dxcVersionInfo.DxcCompilerVersion & ((uint64_t(1) << 32) - 1));
|
|
||||||
mDxcVersionInfo = DxcUnavailable{ss.str()};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// Enable the debug layer (requires the Graphics Tools "optional feature").
|
||||||
const auto instance = GetInstance();
|
const auto instance = GetInstance();
|
||||||
|
if (instance->GetBackendValidationLevel() != BackendValidationLevel::Disabled) {
|
||||||
|
ComPtr<ID3D12Debug3> debugController;
|
||||||
|
if (SUCCEEDED(functions->d3d12GetDebugInterface(IID_PPV_ARGS(&debugController)))) {
|
||||||
|
ASSERT(debugController != nullptr);
|
||||||
|
debugController->EnableDebugLayer();
|
||||||
|
if (instance->GetBackendValidationLevel() == BackendValidationLevel::Full) {
|
||||||
|
debugController->SetEnableGPUBasedValidation(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DAWN_TRY_ASSIGN(mFactory, CreateFactory(mFunctions.get(), instance->GetBackendValidationLevel(),
|
if (instance->IsBeginCaptureOnStartupEnabled()) {
|
||||||
instance->IsBeginCaptureOnStartupEnabled()));
|
ComPtr<IDXGraphicsAnalysis> graphicsAnalysis;
|
||||||
|
if (functions->dxgiGetDebugInterface1 != nullptr &&
|
||||||
|
SUCCEEDED(functions->dxgiGetDebugInterface1(0, IID_PPV_ARGS(&graphicsAnalysis)))) {
|
||||||
|
graphicsAnalysis->BeginCapture();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
DAWN_TRY(Base::Initialize(std::move(functions)));
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
ComPtr<IDXGIFactory4> Backend::GetFactory() const {
|
|
||||||
return mFactory;
|
|
||||||
}
|
|
||||||
|
|
||||||
MaybeError Backend::EnsureDxcLibrary() {
|
|
||||||
if (mDxcLibrary == nullptr) {
|
|
||||||
DAWN_TRY(CheckHRESULT(
|
|
||||||
mFunctions->dxcCreateInstance(CLSID_DxcLibrary, IID_PPV_ARGS(&mDxcLibrary)),
|
|
||||||
"DXC create library"));
|
|
||||||
ASSERT(mDxcLibrary != nullptr);
|
|
||||||
}
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
MaybeError Backend::EnsureDxcCompiler() {
|
|
||||||
if (mDxcCompiler == nullptr) {
|
|
||||||
DAWN_TRY(CheckHRESULT(
|
|
||||||
mFunctions->dxcCreateInstance(CLSID_DxcCompiler, IID_PPV_ARGS(&mDxcCompiler)),
|
|
||||||
"DXC create compiler"));
|
|
||||||
ASSERT(mDxcCompiler != nullptr);
|
|
||||||
}
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
MaybeError Backend::EnsureDxcValidator() {
|
|
||||||
if (mDxcValidator == nullptr) {
|
|
||||||
DAWN_TRY(CheckHRESULT(
|
|
||||||
mFunctions->dxcCreateInstance(CLSID_DxcValidator, IID_PPV_ARGS(&mDxcValidator)),
|
|
||||||
"DXC create validator"));
|
|
||||||
ASSERT(mDxcValidator != nullptr);
|
|
||||||
}
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
ComPtr<IDxcLibrary> Backend::GetDxcLibrary() const {
|
|
||||||
ASSERT(mDxcLibrary != nullptr);
|
|
||||||
return mDxcLibrary;
|
|
||||||
}
|
|
||||||
|
|
||||||
ComPtr<IDxcCompiler> Backend::GetDxcCompiler() const {
|
|
||||||
ASSERT(mDxcCompiler != nullptr);
|
|
||||||
return mDxcCompiler;
|
|
||||||
}
|
|
||||||
|
|
||||||
ComPtr<IDxcValidator> Backend::GetDxcValidator() const {
|
|
||||||
ASSERT(mDxcValidator != nullptr);
|
|
||||||
return mDxcValidator;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Backend::AcquireDxcVersionInformation() {
|
|
||||||
ASSERT(std::holds_alternative<DxcUnavailable>(mDxcVersionInfo));
|
|
||||||
|
|
||||||
auto tryAcquireDxcVersionInfo = [this]() -> ResultOrError<DxcVersionInfo> {
|
|
||||||
DAWN_TRY(EnsureDxcValidator());
|
|
||||||
DAWN_TRY(EnsureDxcCompiler());
|
|
||||||
|
|
||||||
ComPtr<IDxcVersionInfo> compilerVersionInfo;
|
|
||||||
|
|
||||||
DAWN_TRY(CheckHRESULT(mDxcCompiler.As(&compilerVersionInfo),
|
|
||||||
"D3D12 QueryInterface IDxcCompiler to IDxcVersionInfo"));
|
|
||||||
uint32_t compilerMajor, compilerMinor;
|
|
||||||
DAWN_TRY(CheckHRESULT(compilerVersionInfo->GetVersion(&compilerMajor, &compilerMinor),
|
|
||||||
"IDxcVersionInfo::GetVersion"));
|
|
||||||
|
|
||||||
ComPtr<IDxcVersionInfo> validatorVersionInfo;
|
|
||||||
|
|
||||||
DAWN_TRY(CheckHRESULT(mDxcValidator.As(&validatorVersionInfo),
|
|
||||||
"D3D12 QueryInterface IDxcValidator to IDxcVersionInfo"));
|
|
||||||
uint32_t validatorMajor, validatorMinor;
|
|
||||||
DAWN_TRY(CheckHRESULT(validatorVersionInfo->GetVersion(&validatorMajor, &validatorMinor),
|
|
||||||
"IDxcVersionInfo::GetVersion"));
|
|
||||||
|
|
||||||
// Pack major and minor version number into a single version number.
|
|
||||||
uint64_t compilerVersion = MakeDXCVersion(compilerMajor, compilerMinor);
|
|
||||||
uint64_t validatorVersion = MakeDXCVersion(validatorMajor, validatorMinor);
|
|
||||||
return DxcVersionInfo{compilerVersion, validatorVersion};
|
|
||||||
};
|
|
||||||
|
|
||||||
auto dxcVersionInfoOrError = tryAcquireDxcVersionInfo();
|
|
||||||
|
|
||||||
if (dxcVersionInfoOrError.IsSuccess()) {
|
|
||||||
// Cache the DXC version information.
|
|
||||||
mDxcVersionInfo = dxcVersionInfoOrError.AcquireSuccess();
|
|
||||||
} else {
|
|
||||||
// Error occurs when acquiring DXC version information, set the cache to unavailable and
|
|
||||||
// record the error message.
|
|
||||||
std::string errorMessage = dxcVersionInfoOrError.AcquireError()->GetFormattedMessage();
|
|
||||||
dawn::ErrorLog() << errorMessage;
|
|
||||||
mDxcVersionInfo = DxcUnavailable{errorMessage};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return both DXC compiler and DXC validator version, assert that DXC version information is
|
|
||||||
// acquired succesfully.
|
|
||||||
DxcVersionInfo Backend::GetDxcVersion() const {
|
|
||||||
ASSERT(std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo));
|
|
||||||
return DxcVersionInfo(std::get<DxcVersionInfo>(mDxcVersionInfo));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return true if and only if DXC binary is avaliable, and the DXC version is validated to
|
|
||||||
// be no older than a pre-defined minimum version.
|
|
||||||
bool Backend::IsDXCAvailable() const {
|
|
||||||
// mDxcVersionInfo hold DxcVersionInfo instead of DxcUnavailable if and only if DXC binaries and
|
|
||||||
// version are validated in `Initialize`.
|
|
||||||
return std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return true if and only if IsDXCAvailable() return true, and the DXC compiler and validator
|
|
||||||
// version are validated to be no older than the minimium version given in parameter.
|
|
||||||
bool Backend::IsDXCAvailableAndVersionAtLeast(uint64_t minimumCompilerMajorVersion,
|
|
||||||
uint64_t minimumCompilerMinorVersion,
|
|
||||||
uint64_t minimumValidatorMajorVersion,
|
|
||||||
uint64_t minimumValidatorMinorVersion) const {
|
|
||||||
// mDxcVersionInfo hold DxcVersionInfo instead of DxcUnavailable if and only if DXC binaries and
|
|
||||||
// version are validated in `Initialize`.
|
|
||||||
if (std::holds_alternative<DxcVersionInfo>(mDxcVersionInfo)) {
|
|
||||||
const DxcVersionInfo& dxcVersionInfo = std::get<DxcVersionInfo>(mDxcVersionInfo);
|
|
||||||
// Check that DXC compiler and validator version are not lower than given requirements.
|
|
||||||
if (dxcVersionInfo.DxcCompilerVersion >=
|
|
||||||
MakeDXCVersion(minimumCompilerMajorVersion, minimumCompilerMinorVersion) &&
|
|
||||||
dxcVersionInfo.DxcValidatorVersion >=
|
|
||||||
MakeDXCVersion(minimumValidatorMajorVersion, minimumValidatorMinorVersion)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
const PlatformFunctions* Backend::GetFunctions() const {
|
const PlatformFunctions* Backend::GetFunctions() const {
|
||||||
return mFunctions.get();
|
return static_cast<const PlatformFunctions*>(Base::GetFunctions());
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<Ref<AdapterBase>> Backend::DiscoverDefaultAdapters(const TogglesState& adapterToggles) {
|
std::vector<Ref<AdapterBase>> Backend::DiscoverDefaultAdapters(const TogglesState& adapterToggles) {
|
||||||
@ -303,7 +108,7 @@ ResultOrError<std::vector<Ref<AdapterBase>>> Backend::DiscoverAdapters(
|
|||||||
// Enumerate and discover all available adapters.
|
// Enumerate and discover all available adapters.
|
||||||
for (uint32_t adapterIndex = 0;; ++adapterIndex) {
|
for (uint32_t adapterIndex = 0;; ++adapterIndex) {
|
||||||
ComPtr<IDXGIAdapter1> dxgiAdapter = nullptr;
|
ComPtr<IDXGIAdapter1> dxgiAdapter = nullptr;
|
||||||
if (mFactory->EnumAdapters1(adapterIndex, &dxgiAdapter) == DXGI_ERROR_NOT_FOUND) {
|
if (GetFactory()->EnumAdapters1(adapterIndex, &dxgiAdapter) == DXGI_ERROR_NOT_FOUND) {
|
||||||
break; // No more adapters to enumerate.
|
break; // No more adapters to enumerate.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,64 +15,23 @@
|
|||||||
#ifndef SRC_DAWN_NATIVE_D3D12_BACKENDD3D12_H_
|
#ifndef SRC_DAWN_NATIVE_D3D12_BACKENDD3D12_H_
|
||||||
#define SRC_DAWN_NATIVE_D3D12_BACKENDD3D12_H_
|
#define SRC_DAWN_NATIVE_D3D12_BACKENDD3D12_H_
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <string>
|
|
||||||
#include <variant>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "dawn/native/BackendConnection.h"
|
#include "dawn/native/BackendConnection.h"
|
||||||
|
|
||||||
|
#include "dawn/native/d3d/BackendD3D.h"
|
||||||
#include "dawn/native/d3d12/d3d12_platform.h"
|
#include "dawn/native/d3d12/d3d12_platform.h"
|
||||||
|
|
||||||
namespace dawn::native::d3d12 {
|
namespace dawn::native::d3d12 {
|
||||||
|
|
||||||
class PlatformFunctions;
|
class PlatformFunctions;
|
||||||
|
|
||||||
// DxcVersionInfo holds both DXC compiler (dxcompiler.dll) version and DXC validator (dxil.dll)
|
class Backend final : public d3d::Backend {
|
||||||
// version, which are not necessarily identical. Both are in uint64_t type, as the result of
|
|
||||||
// MakeDXCVersion.
|
|
||||||
struct DxcVersionInfo {
|
|
||||||
uint64_t DxcCompilerVersion;
|
|
||||||
uint64_t DxcValidatorVersion;
|
|
||||||
};
|
|
||||||
|
|
||||||
// If DXC version information is not avaliable due to no DXC binary or error occurs when acquiring
|
|
||||||
// version, DxcUnavailable indicates the version information being unavailable and holds the
|
|
||||||
// detailed error information.
|
|
||||||
struct DxcUnavailable {
|
|
||||||
std::string ErrorMessage;
|
|
||||||
};
|
|
||||||
|
|
||||||
class Backend : public BackendConnection {
|
|
||||||
public:
|
public:
|
||||||
explicit Backend(InstanceBase* instance);
|
explicit Backend(InstanceBase* instance);
|
||||||
|
|
||||||
MaybeError Initialize();
|
MaybeError Initialize();
|
||||||
|
|
||||||
ComPtr<IDXGIFactory4> GetFactory() const;
|
|
||||||
|
|
||||||
MaybeError EnsureDxcLibrary();
|
|
||||||
MaybeError EnsureDxcCompiler();
|
|
||||||
MaybeError EnsureDxcValidator();
|
|
||||||
ComPtr<IDxcLibrary> GetDxcLibrary() const;
|
|
||||||
ComPtr<IDxcCompiler> GetDxcCompiler() const;
|
|
||||||
ComPtr<IDxcValidator> GetDxcValidator() const;
|
|
||||||
|
|
||||||
// Return true if and only if DXC binary is avaliable, and the DXC compiler and validator
|
|
||||||
// version are validated to be no older than a specific minimium version, currently 1.6.
|
|
||||||
bool IsDXCAvailable() const;
|
|
||||||
|
|
||||||
// Return true if and only if mIsDXCAvailable is true, and the DXC compiler and validator
|
|
||||||
// version are validated to be no older than the minimium version given in parameter.
|
|
||||||
bool IsDXCAvailableAndVersionAtLeast(uint64_t minimumCompilerMajorVersion,
|
|
||||||
uint64_t minimumCompilerMinorVersion,
|
|
||||||
uint64_t minimumValidatorMajorVersion,
|
|
||||||
uint64_t minimumValidatorMinorVersion) const;
|
|
||||||
|
|
||||||
// Return the DXC version information cached in mDxcVersionInformation, assert that the version
|
|
||||||
// information is valid. Must be called after ensuring `IsDXCAvailable()` return true.
|
|
||||||
DxcVersionInfo GetDxcVersion() const;
|
|
||||||
|
|
||||||
const PlatformFunctions* GetFunctions() const;
|
const PlatformFunctions* GetFunctions() const;
|
||||||
|
|
||||||
std::vector<Ref<AdapterBase>> DiscoverDefaultAdapters(
|
std::vector<Ref<AdapterBase>> DiscoverDefaultAdapters(
|
||||||
@ -82,27 +41,7 @@ class Backend : public BackendConnection {
|
|||||||
const TogglesState& adapterToggles) override;
|
const TogglesState& adapterToggles) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Acquiring DXC version information and store the result in mDxcVersionInfo. This function
|
using Base = d3d::Backend;
|
||||||
// should be called only once, during startup in `Initialize`.
|
|
||||||
void AcquireDxcVersionInformation();
|
|
||||||
|
|
||||||
// Keep mFunctions as the first member so that in the destructor it is freed last. Otherwise
|
|
||||||
// the D3D12 DLLs are unloaded before we are done using them.
|
|
||||||
std::unique_ptr<PlatformFunctions> mFunctions;
|
|
||||||
ComPtr<IDXGIFactory4> mFactory;
|
|
||||||
ComPtr<IDxcLibrary> mDxcLibrary;
|
|
||||||
ComPtr<IDxcCompiler> mDxcCompiler;
|
|
||||||
ComPtr<IDxcValidator> mDxcValidator;
|
|
||||||
|
|
||||||
// DXC binaries and DXC version information are checked when start up in `Initialize`. There are
|
|
||||||
// two possible states:
|
|
||||||
// 1. The DXC binary is not available, or error occurs when checking the version information
|
|
||||||
// and therefore no DXC version information available, or the DXC version is lower than
|
|
||||||
// requested minumum and therefore DXC is not available, represented by DxcUnavailable
|
|
||||||
// in which a error message is held;
|
|
||||||
// 3. The DXC version information is acquired successfully and validated not lower than
|
|
||||||
// requested minimum, stored in DxcVersionInfo.
|
|
||||||
std::variant<DxcUnavailable, DxcVersionInfo> mDxcVersionInfo;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace dawn::native::d3d12
|
} // namespace dawn::native::d3d12
|
||||||
|
@ -170,7 +170,7 @@ bool IsClearValueOptimizable(DeviceBase* device, const D3D12_RESOURCE_DESC& reso
|
|||||||
// textures, or typeless resources
|
// textures, or typeless resources
|
||||||
// https://docs.microsoft.com/en-us/windows/win32/api/d3d12/nf-d3d12-id3d12device-createcommittedresource
|
// https://docs.microsoft.com/en-us/windows/win32/api/d3d12/nf-d3d12-id3d12device-createcommittedresource
|
||||||
// https://docs.microsoft.com/en-us/windows/win32/api/d3d12/nf-d3d12-id3d12device-createplacedresource
|
// https://docs.microsoft.com/en-us/windows/win32/api/d3d12/nf-d3d12-id3d12device-createplacedresource
|
||||||
return !IsTypeless(resourceDescriptor.Format) &&
|
return !d3d::IsTypeless(resourceDescriptor.Format) &&
|
||||||
resourceDescriptor.Dimension != D3D12_RESOURCE_DIMENSION_BUFFER &&
|
resourceDescriptor.Dimension != D3D12_RESOURCE_DIMENSION_BUFFER &&
|
||||||
(resourceDescriptor.Flags & (D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET |
|
(resourceDescriptor.Flags & (D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET |
|
||||||
D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL)) != 0;
|
D3D12_RESOURCE_FLAG_ALLOW_DEPTH_STENCIL)) != 0;
|
||||||
|
@ -186,7 +186,7 @@ ResultOrError<ComPtr<IDxcBlob>> CompileShaderDXC(const D3DBytecodeCompilationReq
|
|||||||
"DXC create blob"));
|
"DXC create blob"));
|
||||||
|
|
||||||
std::wstring entryPointW;
|
std::wstring entryPointW;
|
||||||
DAWN_TRY_ASSIGN(entryPointW, ConvertStringToWstring(entryPointName));
|
DAWN_TRY_ASSIGN(entryPointW, d3d::ConvertStringToWstring(entryPointName));
|
||||||
|
|
||||||
std::vector<const wchar_t*> arguments = GetDXCArguments(r.compileFlags, r.hasShaderF16Feature);
|
std::vector<const wchar_t*> arguments = GetDXCArguments(r.compileFlags, r.hasShaderF16Feature);
|
||||||
|
|
||||||
@ -498,7 +498,7 @@ ResultOrError<CompiledShader> ShaderModule::Compile(
|
|||||||
// available.
|
// available.
|
||||||
ASSERT(ToBackend(device->GetAdapter())->GetBackend()->IsDXCAvailable());
|
ASSERT(ToBackend(device->GetAdapter())->GetBackend()->IsDXCAvailable());
|
||||||
// We can get the DXC version information since IsDXCAvailable() is true.
|
// We can get the DXC version information since IsDXCAvailable() is true.
|
||||||
DxcVersionInfo dxcVersionInfo =
|
d3d::DxcVersionInfo dxcVersionInfo =
|
||||||
ToBackend(device->GetAdapter())->GetBackend()->GetDxcVersion();
|
ToBackend(device->GetAdapter())->GetBackend()->GetDxcVersion();
|
||||||
|
|
||||||
req.bytecode.compiler = Compiler::DXC;
|
req.bytecode.compiler = Compiler::DXC;
|
||||||
|
@ -81,25 +81,6 @@ bool NeedBufferSizeWorkaroundForBufferTextureCopyOnD3D12(const BufferCopy& buffe
|
|||||||
|
|
||||||
} // anonymous namespace
|
} // anonymous namespace
|
||||||
|
|
||||||
ResultOrError<std::wstring> ConvertStringToWstring(std::string_view s) {
|
|
||||||
size_t len = s.length();
|
|
||||||
if (len == 0) {
|
|
||||||
return std::wstring();
|
|
||||||
}
|
|
||||||
int numChars = MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, s.data(), len, nullptr, 0);
|
|
||||||
if (numChars == 0) {
|
|
||||||
return DAWN_INTERNAL_ERROR("Failed to convert string to wide string");
|
|
||||||
}
|
|
||||||
std::wstring result;
|
|
||||||
result.resize(numChars);
|
|
||||||
int numConvertedChars =
|
|
||||||
MultiByteToWideChar(CP_UTF8, MB_ERR_INVALID_CHARS, s.data(), len, &result[0], numChars);
|
|
||||||
if (numConvertedChars != numChars) {
|
|
||||||
return DAWN_INTERNAL_ERROR("Failed to convert string to wide string");
|
|
||||||
}
|
|
||||||
return std::move(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
D3D12_COMPARISON_FUNC ToD3D12ComparisonFunc(wgpu::CompareFunction func) {
|
D3D12_COMPARISON_FUNC ToD3D12ComparisonFunc(wgpu::CompareFunction func) {
|
||||||
switch (func) {
|
switch (func) {
|
||||||
case wgpu::CompareFunction::Never:
|
case wgpu::CompareFunction::Never:
|
||||||
@ -167,39 +148,6 @@ D3D12_BOX ComputeD3D12BoxFromOffsetAndSize(const Origin3D& offset, const Extent3
|
|||||||
return sourceRegion;
|
return sourceRegion;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsTypeless(DXGI_FORMAT format) {
|
|
||||||
// List generated from <dxgiformat.h>
|
|
||||||
switch (format) {
|
|
||||||
case DXGI_FORMAT_R32G32B32A32_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R32G32B32_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R16G16B16A16_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R32G32_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R32G8X24_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R32_FLOAT_X8X24_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R10G10B10A2_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R8G8B8A8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R16G16_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R32_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R24G8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R24_UNORM_X8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R8G8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R16_TYPELESS:
|
|
||||||
case DXGI_FORMAT_R8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC1_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC2_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC3_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC4_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC5_TYPELESS:
|
|
||||||
case DXGI_FORMAT_B8G8R8A8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_B8G8R8X8_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC6H_TYPELESS:
|
|
||||||
case DXGI_FORMAT_BC7_TYPELESS:
|
|
||||||
return true;
|
|
||||||
default:
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void RecordBufferTextureCopyFromSplits(BufferTextureCopyDirection direction,
|
void RecordBufferTextureCopyFromSplits(BufferTextureCopyDirection direction,
|
||||||
ID3D12GraphicsCommandList* commandList,
|
ID3D12GraphicsCommandList* commandList,
|
||||||
const TextureCopySubresource& baseCopySplit,
|
const TextureCopySubresource& baseCopySplit,
|
||||||
@ -386,8 +334,4 @@ void SetDebugName(Device* device, ID3D12Object* object, const char* prefix, std:
|
|||||||
object->SetPrivateData(WKPDID_D3DDebugObjectName, objectName.length(), objectName.c_str());
|
object->SetPrivateData(WKPDID_D3DDebugObjectName, objectName.length(), objectName.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
uint64_t MakeDXCVersion(uint64_t majorVersion, uint64_t minorVersion) {
|
|
||||||
return (majorVersion << 32) + minorVersion;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace dawn::native::d3d12
|
} // namespace dawn::native::d3d12
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "dawn/native/Commands.h"
|
#include "dawn/native/Commands.h"
|
||||||
|
#include "dawn/native/d3d/UtilsD3D.h"
|
||||||
#include "dawn/native/d3d12/BufferD3D12.h"
|
#include "dawn/native/d3d12/BufferD3D12.h"
|
||||||
#include "dawn/native/d3d12/TextureCopySplitter.h"
|
#include "dawn/native/d3d12/TextureCopySplitter.h"
|
||||||
#include "dawn/native/d3d12/TextureD3D12.h"
|
#include "dawn/native/d3d12/TextureD3D12.h"
|
||||||
@ -26,8 +27,6 @@
|
|||||||
|
|
||||||
namespace dawn::native::d3d12 {
|
namespace dawn::native::d3d12 {
|
||||||
|
|
||||||
ResultOrError<std::wstring> ConvertStringToWstring(std::string_view s);
|
|
||||||
|
|
||||||
D3D12_COMPARISON_FUNC ToD3D12ComparisonFunc(wgpu::CompareFunction func);
|
D3D12_COMPARISON_FUNC ToD3D12ComparisonFunc(wgpu::CompareFunction func);
|
||||||
|
|
||||||
D3D12_TEXTURE_COPY_LOCATION ComputeTextureCopyLocationForTexture(const Texture* texture,
|
D3D12_TEXTURE_COPY_LOCATION ComputeTextureCopyLocationForTexture(const Texture* texture,
|
||||||
@ -44,8 +43,6 @@ D3D12_TEXTURE_COPY_LOCATION ComputeBufferLocationForCopyTextureRegion(
|
|||||||
Aspect aspect);
|
Aspect aspect);
|
||||||
D3D12_BOX ComputeD3D12BoxFromOffsetAndSize(const Origin3D& offset, const Extent3D& copySize);
|
D3D12_BOX ComputeD3D12BoxFromOffsetAndSize(const Origin3D& offset, const Extent3D& copySize);
|
||||||
|
|
||||||
bool IsTypeless(DXGI_FORMAT format);
|
|
||||||
|
|
||||||
enum class BufferTextureCopyDirection {
|
enum class BufferTextureCopyDirection {
|
||||||
B2T,
|
B2T,
|
||||||
T2B,
|
T2B,
|
||||||
@ -68,8 +65,6 @@ void RecordBufferTextureCopy(BufferTextureCopyDirection direction,
|
|||||||
|
|
||||||
void SetDebugName(Device* device, ID3D12Object* object, const char* prefix, std::string label = "");
|
void SetDebugName(Device* device, ID3D12Object* object, const char* prefix, std::string label = "");
|
||||||
|
|
||||||
uint64_t MakeDXCVersion(uint64_t majorVersion, uint64_t minorVersion);
|
|
||||||
|
|
||||||
} // namespace dawn::native::d3d12
|
} // namespace dawn::native::d3d12
|
||||||
|
|
||||||
#endif // SRC_DAWN_NATIVE_D3D12_UTILSD3D12_H_
|
#endif // SRC_DAWN_NATIVE_D3D12_UTILSD3D12_H_
|
||||||
|
Loading…
x
Reference in New Issue
Block a user