@@ -2023,18 +2023,16 @@ Result D3D12Renderer::createTextureResource(Resource::Usage initialUsage, const
2023
2023
// We should have this many sub resources
2024
2024
assert (initData->numSubResources == numMipMaps * srcDesc.size .depth * arraySize);
2025
2025
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
2027
2027
UInt64 requiredSize = 0 ;
2028
2028
m_device->GetCopyableFootprints (&resourceDesc, 0 , numMipMaps, 0 , layouts.begin (), mipNumRows.begin (), mipRowSizeInBytes.begin (), &requiredSize);
2029
2029
2030
2030
// Sub resource indexing
2031
2031
// 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++)
2035
2032
{
2036
2033
// Create the upload texture
2037
2034
D3D12Resource uploadTexture;
2035
+
2038
2036
{
2039
2037
D3D12_HEAP_PROPERTIES heapProps;
2040
2038
@@ -2062,68 +2060,71 @@ Result D3D12Renderer::createTextureResource(Resource::Usage initialUsage, const
2062
2060
2063
2061
uploadTexture.setDebugName (L" TextureUpload" );
2064
2062
}
2065
-
2063
+ // Get the pointer to the upload resource
2066
2064
ID3D12Resource* uploadResource = uploadTexture;
2067
2065
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++)
2072
2068
{
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)) ;
2075
2071
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 ;
2077
2076
2078
- assert (footprint. Width == mipSize. width && footprint. Height == mipSize. height && footprint. Depth == mipSize. depth );
2077
+ const TextureResource:: Size mipSize = srcDesc. size . calcMipSize (j );
2079
2078
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 );
2082
2080
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]);
2084
2083
2085
- const uint8_t * srcRow = (const uint8_t *)initData->subResources [subResourceIndex];
2086
- uint8_t * dstRow = p + layouts[j].Offset ;
2084
+ assert (dstMipRowPitch >= srcMipRowPitch);
2087
2085
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++ )
2093
2091
{
2094
- ::memcpy (dstRow, srcRow, srcMipRowPitch);
2092
+ // Copy rows
2093
+ for (int k = 0 ; k < mipSize.height ; ++k)
2094
+ {
2095
+ ::memcpy (dstRow, srcRow, srcMipRowPitch);
2095
2096
2096
- srcRow += srcMipRowPitch;
2097
- dstRow += dstMipRowPitch;
2097
+ srcRow += srcMipRowPitch;
2098
+ dstRow += dstMipRowPitch;
2099
+ }
2098
2100
}
2101
+
2102
+ // assert(srcRow == (const uint8_t*)(srcMip.Buffer() + srcMip.Count()));
2099
2103
}
2104
+ uploadResource->Unmap (0 , nullptr );
2100
2105
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
2104
2109
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];
2108
2114
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 );
2113
2120
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
+ }
2119
2123
2120
- subResourceIndex++;
2124
+ // Block - waiting for copy to complete (so can drop upload texture)
2125
+ submitGpuWorkAndWait ();
2121
2126
}
2122
-
2123
- // Block - waiting for copy to complete (so can drop upload texture)
2124
- submitGpuWorkAndWait ();
2125
2127
}
2126
-
2127
2128
{
2128
2129
const D3D12_RESOURCE_STATES finalState = _calcResourceState (initialUsage);
2129
2130
D3D12BarrierSubmitter submitter (m_commandList);
@@ -2362,7 +2363,16 @@ Result D3D12Renderer::createTextureView(TextureResource* texture, ResourceView::
2362
2363
case ResourceView::Type::ShaderResource:
2363
2364
{
2364
2365
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 );
2366
2376
}
2367
2377
break ;
2368
2378
}
0 commit comments