Skip to content

Commit 5bdc3ef

Browse files
authored
Hotfix/dx12 cubemap lookup (shader-slang#921)
* Disable Dx12 half tests. The half-calc test runs, but is not actually doing any half maths. If the code is changed such that it is, the device fails when the shader is used. This can be seen by looking at dxil-asm. * Fix using software driver for dx12 even when hardware is requested. * * Refactor Dx12 _createAdapter such that it doesn't have side effects and stores desc information * Disable half on dx12 software renderer because it crashes * * Disable erroneous warnings from dx12 * Test for adapter creation * Identify warp specifically * Structured buffer test now works on dx12. * Fix intemittent crash on dx12. Due to if a resource was initialized with data, the actual resource constructed might be larger, for alignment issues. This led to a memcpy potentially copying from after the allocated source data and therefore a crash. Now only copies the non aligned amount of data. * * Rename the test to use - style * Disable TextureCube lookup in tests, as does not produce the correct result in dx12 (will fix in future PR) * Updated hlsl.meta.slang.h that has rcp for glsl. * * Fix bug where the SRV description was incorrect for cubemaps on dx12 * Re-enable cube map access in dx12 tests * Slightly re-organize texture upload on dx12 to not repeatidly create and destroy upload resource for array/cube scenarios
1 parent 4e359e1 commit 5bdc3ef

File tree

2 files changed

+57
-52
lines changed

2 files changed

+57
-52
lines changed

tests/compute/texture-sampling.slang

-5
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,8 @@ FragmentStageOutput fragmentMain(FragmentStageInput input)
9898

9999
val += t2dArray.Sample(samplerState, float3(uv, 0.0));
100100

101-
// TODO(JS): Disable for now, as doesn't work correctly on dx12
102-
#if 0
103101
val += tCubeArray.Sample(samplerState, float4(uv, 0.5, 0.0));
104102
val += tCube.Sample(samplerState, float3(uv, 0.5));
105-
#else
106-
val += float4(2, 2, 2, 2);
107-
#endif
108103

109104
outputBuffer[0] = val.x;
110105
return output;

tools/gfx/render-d3d12.cpp

+57-47
Original file line numberDiff line numberDiff line change
@@ -2023,18 +2023,16 @@ Result D3D12Renderer::createTextureResource(Resource::Usage initialUsage, const
20232023
// We should have this many sub resources
20242024
assert(initData->numSubResources == numMipMaps * srcDesc.size.depth * arraySize);
20252025

2026-
// This is just the size for one array upload -> not for the whole texure
2026+
// NOTE! This is just the size for one array upload -> not for the whole texture
20272027
UInt64 requiredSize = 0;
20282028
m_device->GetCopyableFootprints(&resourceDesc, 0, numMipMaps, 0, layouts.begin(), mipNumRows.begin(), mipRowSizeInBytes.begin(), &requiredSize);
20292029

20302030
// Sub resource indexing
20312031
// https://msdn.microsoft.com/en-us/library/windows/desktop/dn705766(v=vs.85).aspx#subresource_indexing
2032-
2033-
int subResourceIndex = 0;
2034-
for (int i = 0; i < arraySize; i++)
20352032
{
20362033
// Create the upload texture
20372034
D3D12Resource uploadTexture;
2035+
20382036
{
20392037
D3D12_HEAP_PROPERTIES heapProps;
20402038

@@ -2062,68 +2060,71 @@ Result D3D12Renderer::createTextureResource(Resource::Usage initialUsage, const
20622060

20632061
uploadTexture.setDebugName(L"TextureUpload");
20642062
}
2065-
2063+
// Get the pointer to the upload resource
20662064
ID3D12Resource* uploadResource = uploadTexture;
20672065

2068-
uint8_t* p;
2069-
uploadResource->Map(0, nullptr, reinterpret_cast<void**>(&p));
2070-
2071-
for (int j = 0; j < numMipMaps; ++j)
2066+
int subResourceIndex = 0;
2067+
for (int arrayIndex = 0; arrayIndex < arraySize; arrayIndex++)
20722068
{
2073-
const D3D12_PLACED_SUBRESOURCE_FOOTPRINT& layout = layouts[j];
2074-
const D3D12_SUBRESOURCE_FOOTPRINT& footprint = layout.Footprint;
2069+
uint8_t* p;
2070+
uploadResource->Map(0, nullptr, reinterpret_cast<void**>(&p));
20752071

2076-
const TextureResource::Size mipSize = srcDesc.size.calcMipSize(j);
2072+
for (int j = 0; j < numMipMaps; ++j)
2073+
{
2074+
const D3D12_PLACED_SUBRESOURCE_FOOTPRINT& layout = layouts[j];
2075+
const D3D12_SUBRESOURCE_FOOTPRINT& footprint = layout.Footprint;
20772076

2078-
assert(footprint.Width == mipSize.width && footprint.Height == mipSize.height && footprint.Depth == mipSize.depth);
2077+
const TextureResource::Size mipSize = srcDesc.size.calcMipSize(j);
20792078

2080-
const ptrdiff_t dstMipRowPitch = ptrdiff_t(layouts[j].Footprint.RowPitch);
2081-
const ptrdiff_t srcMipRowPitch = ptrdiff_t(initData->mipRowStrides[j]);
2079+
assert(footprint.Width == mipSize.width && footprint.Height == mipSize.height && footprint.Depth == mipSize.depth);
20822080

2083-
assert(dstMipRowPitch >= srcMipRowPitch);
2081+
const ptrdiff_t dstMipRowPitch = ptrdiff_t(layouts[j].Footprint.RowPitch);
2082+
const ptrdiff_t srcMipRowPitch = ptrdiff_t(initData->mipRowStrides[j]);
20842083

2085-
const uint8_t* srcRow = (const uint8_t*)initData->subResources[subResourceIndex];
2086-
uint8_t* dstRow = p + layouts[j].Offset;
2084+
assert(dstMipRowPitch >= srcMipRowPitch);
20872085

2088-
// Copy the depth each mip
2089-
for (int l = 0; l < mipSize.depth; l++)
2090-
{
2091-
// Copy rows
2092-
for (int k = 0; k < mipSize.height; ++k)
2086+
const uint8_t* srcRow = (const uint8_t*)initData->subResources[subResourceIndex];
2087+
uint8_t* dstRow = p + layouts[j].Offset;
2088+
2089+
// Copy the depth each mip
2090+
for (int l = 0; l < mipSize.depth; l++)
20932091
{
2094-
::memcpy(dstRow, srcRow, srcMipRowPitch);
2092+
// Copy rows
2093+
for (int k = 0; k < mipSize.height; ++k)
2094+
{
2095+
::memcpy(dstRow, srcRow, srcMipRowPitch);
20952096

2096-
srcRow += srcMipRowPitch;
2097-
dstRow += dstMipRowPitch;
2097+
srcRow += srcMipRowPitch;
2098+
dstRow += dstMipRowPitch;
2099+
}
20982100
}
2101+
2102+
//assert(srcRow == (const uint8_t*)(srcMip.Buffer() + srcMip.Count()));
20992103
}
2104+
uploadResource->Unmap(0, nullptr);
21002105

2101-
//assert(srcRow == (const uint8_t*)(srcMip.Buffer() + srcMip.Count()));
2102-
}
2103-
uploadResource->Unmap(0, nullptr);
2106+
for (int mipIndex = 0; mipIndex < numMipMaps; ++mipIndex)
2107+
{
2108+
// https://msdn.microsoft.com/en-us/library/windows/desktop/dn903862(v=vs.85).aspx
21042109

2105-
for (int mipIndex = 0; mipIndex < numMipMaps; ++mipIndex)
2106-
{
2107-
// https://msdn.microsoft.com/en-us/library/windows/desktop/dn903862(v=vs.85).aspx
2110+
D3D12_TEXTURE_COPY_LOCATION src;
2111+
src.pResource = uploadTexture;
2112+
src.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT;
2113+
src.PlacedFootprint = layouts[mipIndex];
21082114

2109-
D3D12_TEXTURE_COPY_LOCATION src;
2110-
src.pResource = uploadTexture;
2111-
src.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT;
2112-
src.PlacedFootprint = layouts[mipIndex];
2115+
D3D12_TEXTURE_COPY_LOCATION dst;
2116+
dst.pResource = texture->m_resource;
2117+
dst.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX;
2118+
dst.SubresourceIndex = subResourceIndex;
2119+
m_commandList->CopyTextureRegion(&dst, 0, 0, 0, &src, nullptr);
21132120

2114-
D3D12_TEXTURE_COPY_LOCATION dst;
2115-
dst.pResource = texture->m_resource;
2116-
dst.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX;
2117-
dst.SubresourceIndex = subResourceIndex;
2118-
m_commandList->CopyTextureRegion(&dst, 0, 0, 0, &src, nullptr);
2121+
subResourceIndex++;
2122+
}
21192123

2120-
subResourceIndex++;
2124+
// Block - waiting for copy to complete (so can drop upload texture)
2125+
submitGpuWorkAndWait();
21212126
}
2122-
2123-
// Block - waiting for copy to complete (so can drop upload texture)
2124-
submitGpuWorkAndWait();
21252127
}
2126-
21272128
{
21282129
const D3D12_RESOURCE_STATES finalState = _calcResourceState(initialUsage);
21292130
D3D12BarrierSubmitter submitter(m_commandList);
@@ -2362,7 +2363,16 @@ Result D3D12Renderer::createTextureView(TextureResource* texture, ResourceView::
23622363
case ResourceView::Type::ShaderResource:
23632364
{
23642365
SLANG_RETURN_ON_FAIL(m_viewAllocator.allocate(&viewImpl->m_descriptor));
2365-
m_device->CreateShaderResourceView(resourceImpl->m_resource, nullptr, viewImpl->m_descriptor.cpuHandle);
2366+
2367+
// Need to construct the D3D12_SHADER_RESOURCE_VIEW_DESC because otherwise TextureCube is not accessed
2368+
// appropriately (rather than just passing nullptr to CreateShaderResourceView)
2369+
const D3D12_RESOURCE_DESC resourceDesc = resourceImpl->m_resource.getResource()->GetDesc();
2370+
const DXGI_FORMAT pixelFormat = resourceDesc.Format;
2371+
2372+
D3D12_SHADER_RESOURCE_VIEW_DESC srvDesc;
2373+
_initSrvDesc(resourceImpl->getType(), resourceImpl->getDesc(), resourceDesc, pixelFormat, srvDesc);
2374+
2375+
m_device->CreateShaderResourceView(resourceImpl->m_resource, &srvDesc, viewImpl->m_descriptor.cpuHandle);
23662376
}
23672377
break;
23682378
}

0 commit comments

Comments
 (0)