@@ -189,7 +189,53 @@ SlangResult DeviceImpl::readTextureResource(
189
189
{
190
190
AUTORELEASEPOOL
191
191
192
+ TextureResourceImpl* textureImpl = static_cast <TextureResourceImpl*>(texture);
193
+
194
+ if (textureImpl->getDesc ()->sampleDesc .numSamples > 1 )
195
+ {
192
196
return SLANG_E_NOT_IMPLEMENTED;
197
+ }
198
+
199
+ NS::SharedPtr<MTL::Texture> srcTexture = textureImpl->m_texture ;
200
+
201
+ const ITextureResource::Desc& desc = *textureImpl->getDesc ();
202
+ Count width = Math::Max (desc.size .width , 1 );
203
+ Count height = Math::Max (desc.size .height , 1 );
204
+ Count depth = Math::Max (desc.size .depth , 1 );
205
+ FormatInfo formatInfo;
206
+ gfxGetFormatInfo (desc.format , &formatInfo);
207
+ Size bytesPerPixel = formatInfo.blockSizeInBytes / formatInfo.pixelsPerBlock ;
208
+ Size bytesPerRow = Size (width) * bytesPerPixel;
209
+ Size bytesPerSlice = Size (height) * bytesPerRow;
210
+ Size bufferSize = Size (depth) * bytesPerSlice;
211
+ if (outRowPitch)
212
+ *outRowPitch = bytesPerRow;
213
+ if (outPixelSize)
214
+ *outPixelSize = bytesPerPixel;
215
+
216
+ // create staging buffer
217
+ NS::SharedPtr<MTL::Buffer> stagingBuffer = NS::TransferPtr (m_device->newBuffer (bufferSize, MTL::StorageModeShared));
218
+ if (!stagingBuffer)
219
+ {
220
+ return SLANG_FAIL;
221
+ }
222
+
223
+ MTL::CommandBuffer* commandBuffer = m_commandQueue->commandBuffer ();
224
+ MTL::BlitCommandEncoder* encoder = commandBuffer->blitCommandEncoder ();
225
+ encoder->copyFromTexture (
226
+ srcTexture.get (), 0 , 0 , MTL::Origin (0 , 0 , 0 ), MTL::Size (width, height, depth),
227
+ stagingBuffer.get (), 0 , bytesPerRow, bytesPerSlice);
228
+ encoder->endEncoding ();
229
+ commandBuffer->commit ();
230
+ commandBuffer->waitUntilCompleted ();
231
+
232
+ List<uint8_t > blobData;
233
+ blobData.setCount (bufferSize);
234
+ ::memcpy (blobData.getBuffer(), stagingBuffer->contents(), bufferSize);
235
+ auto blob = ListBlob::moveCreate (blobData);
236
+
237
+ returnComPtr (outBlob, blob);
238
+ return SLANG_OK;
193
239
}
194
240
195
241
SlangResult DeviceImpl::readBufferResource (
0 commit comments