D3D12: Enable GPU-based validation
Enables GBV by default when the backend validation layers are enabled. This feature is particularly useful for catching mistakes in shaders that otherwise pass when only using the debug layer. BUG=dawn:363 Change-Id: I7b730ce8e43069dc3150e7a5857a0977b3147390 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/21701 Commit-Queue: Bryan Bernhart <bryan.bernhart@intel.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
parent
983211974b
commit
1888ae7857
|
@ -33,11 +33,12 @@ namespace dawn_native { namespace d3d12 {
|
|||
// Enable the debug layer (requires the Graphics Tools "optional feature").
|
||||
{
|
||||
if (enableBackendValidation) {
|
||||
ComPtr<ID3D12Debug> debugController;
|
||||
ComPtr<ID3D12Debug1> debugController;
|
||||
if (SUCCEEDED(
|
||||
functions->d3d12GetDebugInterface(IID_PPV_ARGS(&debugController)))) {
|
||||
ASSERT(debugController != nullptr);
|
||||
debugController->EnableDebugLayer();
|
||||
debugController->SetEnableGPUBasedValidation(true);
|
||||
|
||||
// Enable additional debug layers.
|
||||
dxgiFactoryFlags |= DXGI_CREATE_FACTORY_DEBUG;
|
||||
|
|
|
@ -127,6 +127,9 @@ class D3D12ResidencyTests : public DawnTest {
|
|||
|
||||
// Check that resources existing on suballocated heaps are made resident and evicted correctly.
|
||||
TEST_P(D3D12ResidencyTests, OvercommitSmallResources) {
|
||||
// TODO(http://crbug.com/dawn/416): Tests fails on Intel HD 630 bot.
|
||||
DAWN_SKIP_TEST_IF(IsIntel() && IsBackendValidationEnabled());
|
||||
|
||||
// Create suballocated buffers to fill half the budget.
|
||||
std::vector<wgpu::Buffer> bufferSet1 = AllocateBuffers(
|
||||
kSuballocatedResourceSize, ((kRestrictedBudgetSize / 2) / kSuballocatedResourceSize),
|
||||
|
|
Loading…
Reference in New Issue