]> git.cworth.org Git - apitrace/blobdiff - retrace/d3d10state_images.cpp
d3dretrace: Dump d3d10 PS resource shader views.
[apitrace] / retrace / d3d10state_images.cpp
index 1fc44926c467304c45234c2df327b7f7751f0156..5c9060e6e684502a347094c451cde3ef2730b43e 100644 (file)
@@ -139,20 +139,20 @@ stageResource(ID3D10Device *pDevice,
 
 static HRESULT
 mapResource(ID3D10Resource *pResource,
-            UINT Subresource, D3D10_MAP MapType, UINT MapFlags,
-            D3D10_MAPPED_TEXTURE3D *pMappedSubresource) {
+            UINT SubResource, D3D10_MAP MapType, UINT MapFlags,
+            D3D10_MAPPED_TEXTURE3D *pMappedSubResource) {
     D3D10_RESOURCE_DIMENSION Type = D3D10_RESOURCE_DIMENSION_UNKNOWN;
     pResource->GetType(&Type);
     switch (Type) {
     case D3D10_RESOURCE_DIMENSION_BUFFER:
-        assert(Subresource == 0);
-        return static_cast<ID3D10Buffer *>(pResource)->Map(MapType, MapFlags, &pMappedSubresource->pData);
+        assert(SubResource == 0);
+        return static_cast<ID3D10Buffer *>(pResource)->Map(MapType, MapFlags, &pMappedSubResource->pData);
     case D3D10_RESOURCE_DIMENSION_TEXTURE1D:
-        return static_cast<ID3D10Texture1D *>(pResource)->Map(Subresource, MapType, MapFlags, &pMappedSubresource->pData);
+        return static_cast<ID3D10Texture1D *>(pResource)->Map(SubResource, MapType, MapFlags, &pMappedSubResource->pData);
     case D3D10_RESOURCE_DIMENSION_TEXTURE2D:
-        return static_cast<ID3D10Texture2D *>(pResource)->Map(Subresource, MapType, MapFlags, reinterpret_cast<D3D10_MAPPED_TEXTURE2D *>(pMappedSubresource));
+        return static_cast<ID3D10Texture2D *>(pResource)->Map(SubResource, MapType, MapFlags, reinterpret_cast<D3D10_MAPPED_TEXTURE2D *>(pMappedSubResource));
     case D3D10_RESOURCE_DIMENSION_TEXTURE3D:
-        return static_cast<ID3D10Texture3D *>(pResource)->Map(Subresource, MapType, MapFlags, pMappedSubresource);
+        return static_cast<ID3D10Texture3D *>(pResource)->Map(SubResource, MapType, MapFlags, pMappedSubResource);
     default:
         assert(0);
         return E_NOTIMPL;
@@ -160,40 +160,139 @@ mapResource(ID3D10Resource *pResource,
 }
 
 static void
-unmapResource(ID3D10Resource *pResource, UINT Subresource) {
+unmapResource(ID3D10Resource *pResource, UINT SubResource) {
     D3D10_RESOURCE_DIMENSION Type = D3D10_RESOURCE_DIMENSION_UNKNOWN;
     pResource->GetType(&Type);
     switch (Type) {
     case D3D10_RESOURCE_DIMENSION_BUFFER:
-        assert(Subresource == 0);
+        assert(SubResource == 0);
         static_cast<ID3D10Buffer *>(pResource)->Unmap();
         break;
     case D3D10_RESOURCE_DIMENSION_TEXTURE1D:
-        static_cast<ID3D10Texture1D *>(pResource)->Unmap(Subresource);
+        static_cast<ID3D10Texture1D *>(pResource)->Unmap(SubResource);
         break;
     case D3D10_RESOURCE_DIMENSION_TEXTURE2D:
-        static_cast<ID3D10Texture2D *>(pResource)->Unmap(Subresource);
+        static_cast<ID3D10Texture2D *>(pResource)->Unmap(SubResource);
         break;
     case D3D10_RESOURCE_DIMENSION_TEXTURE3D:
-        static_cast<ID3D10Texture3D *>(pResource)->Unmap(Subresource);
+        static_cast<ID3D10Texture3D *>(pResource)->Unmap(SubResource);
         break;
     default:
         assert(0);
     }
 }
 
+static image::Image *
+getSubResourceImage(ID3D10Device *pDevice,
+                    ID3D10Resource *pResource,
+                    DXGI_FORMAT Format,
+                    UINT MipSlice)
+{
+    image::Image *image = NULL;
+    ID3D10Resource *pStagingResource = NULL;
+    UINT Width, Height, Depth;
+    UINT SubResource = MipSlice;
+    D3D10_MAPPED_TEXTURE3D MappedSubResource;
+    HRESULT hr;
+
+    if (!pResource) {
+        return NULL;
+    }
+
+    hr = stageResource(pDevice, pResource, &pStagingResource, &Width, &Height, &Depth);
+    if (FAILED(hr)) {
+        goto no_staging;
+    }
+
+    Width  = std::max(Width  >> MipSlice, 1U);
+    Height = std::max(Height >> MipSlice, 1U);
+    Depth  = std::max(Depth  >> MipSlice, 1U);
+
+    hr = mapResource(pStagingResource, SubResource, D3D10_MAP_READ, 0, &MappedSubResource);
+    if (FAILED(hr)) {
+        goto no_map;
+    }
+
+    image = ConvertImage(Format,
+                         MappedSubResource.pData,
+                         MappedSubResource.RowPitch,
+                         Width, Height);
+
+    unmapResource(pStagingResource, SubResource);
+no_map:
+    if (pStagingResource) {
+        pStagingResource->Release();
+    }
+no_staging:
+    if (pResource) {
+        pResource->Release();
+    }
+    return image;
+}
+
+
+static image::Image *
+getShaderResourceViewImage(ID3D10Device *pDevice,
+                           ID3D10ShaderResourceView *pShaderResourceView) {
+    D3D10_SHADER_RESOURCE_VIEW_DESC Desc;
+    ID3D10Resource *pResource = NULL;
+    UINT MipSlice;
+
+    if (!pShaderResourceView) {
+        return NULL;
+    }
+
+    pShaderResourceView->GetResource(&pResource);
+    assert(pResource);
+
+    pShaderResourceView->GetDesc(&Desc);
+
+    // TODO: Take the slice in consideration
+    switch (Desc.ViewDimension) {
+    case D3D10_SRV_DIMENSION_BUFFER:
+        MipSlice = 0;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE1D:
+        MipSlice = Desc.Texture1D.MostDetailedMip;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE1DARRAY:
+        MipSlice = Desc.Texture1DArray.MostDetailedMip;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE2D:
+        MipSlice = Desc.Texture2D.MostDetailedMip;
+        MipSlice = 0;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE2DARRAY:
+        MipSlice = Desc.Texture2DArray.MostDetailedMip;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE2DMS:
+        MipSlice = 0;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE2DMSARRAY:
+        MipSlice = 0;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURE3D:
+        MipSlice = Desc.Texture3D.MostDetailedMip;
+        break;
+    case D3D10_SRV_DIMENSION_TEXTURECUBE:
+        MipSlice = Desc.TextureCube.MostDetailedMip;
+        break;
+    case D3D10_SRV_DIMENSION_UNKNOWN:
+    default:
+        assert(0);
+        return NULL;
+    }
+
+    return getSubResourceImage(pDevice, pResource, Desc.Format, MipSlice);
+}
+
+
 static image::Image *
 getRenderTargetViewImage(ID3D10Device *pDevice,
                          ID3D10RenderTargetView *pRenderTargetView) {
-    image::Image *image = NULL;
     D3D10_RENDER_TARGET_VIEW_DESC Desc;
     ID3D10Resource *pResource = NULL;
-    ID3D10Resource *pStagingResource = NULL;
-    UINT Width, Height, Depth;
     UINT MipSlice;
-    UINT Subresource;
-    D3D10_MAPPED_TEXTURE3D MappedSubresource;
-    HRESULT hr;
 
     if (!pRenderTargetView) {
         return NULL;
@@ -204,11 +303,6 @@ getRenderTargetViewImage(ID3D10Device *pDevice,
 
     pRenderTargetView->GetDesc(&Desc);
 
-    hr = stageResource(pDevice, pResource, &pStagingResource, &Width, &Height, &Depth);
-    if (FAILED(hr)) {
-        goto no_staging;
-    }
-
     // TODO: Take the slice in consideration
     switch (Desc.ViewDimension) {
     case D3D10_RTV_DIMENSION_BUFFER:
@@ -236,51 +330,22 @@ getRenderTargetViewImage(ID3D10Device *pDevice,
     case D3D10_RTV_DIMENSION_TEXTURE3D:
         MipSlice = Desc.Texture3D.MipSlice;
         break;
-    case D3D10_SRV_DIMENSION_UNKNOWN:
+    case D3D10_RTV_DIMENSION_UNKNOWN:
     default:
         assert(0);
-        goto no_map;
-    }
-    Subresource = MipSlice;
-
-    Width  = std::max(Width  >> MipSlice, 1U);
-    Height = std::max(Height >> MipSlice, 1U);
-    Depth  = std::max(Depth  >> MipSlice, 1U);
-
-    hr = mapResource(pStagingResource, Subresource, D3D10_MAP_READ, 0, &MappedSubresource);
-    if (FAILED(hr)) {
-        goto no_map;
+        return NULL;
     }
 
-    image = ConvertImage(Desc.Format,
-                         MappedSubresource.pData,
-                         MappedSubresource.RowPitch,
-                         Width, Height);
-
-    unmapResource(pStagingResource, Subresource);
-no_map:
-    if (pStagingResource) {
-        pStagingResource->Release();
-    }
-no_staging:
-    if (pResource) {
-        pResource->Release();
-    }
-    return image;
+    return getSubResourceImage(pDevice, pResource, Desc.Format, MipSlice);
 }
 
+
 static image::Image *
 getDepthStencilViewImage(ID3D10Device *pDevice,
                          ID3D10DepthStencilView *pDepthStencilView) {
-    image::Image *image = NULL;
     D3D10_DEPTH_STENCIL_VIEW_DESC Desc;
     ID3D10Resource *pResource = NULL;
-    ID3D10Resource *pStagingResource = NULL;
-    UINT Width, Height, Depth;
     UINT MipSlice;
-    UINT Subresource;
-    D3D10_MAPPED_TEXTURE3D MappedSubresource;
-    HRESULT hr;
 
     if (!pDepthStencilView) {
         return NULL;
@@ -291,11 +356,6 @@ getDepthStencilViewImage(ID3D10Device *pDevice,
 
     pDepthStencilView->GetDesc(&Desc);
 
-    hr = stageResource(pDevice, pResource, &pStagingResource, &Width, &Height, &Depth);
-    if (FAILED(hr)) {
-        goto no_staging;
-    }
-
     // TODO: Take the slice in consideration
     switch (Desc.ViewDimension) {
     case D3D10_DSV_DIMENSION_TEXTURE1D:
@@ -317,37 +377,45 @@ getDepthStencilViewImage(ID3D10Device *pDevice,
     case D3D10_DSV_DIMENSION_TEXTURE2DMSARRAY:
         MipSlice = 0;
         break;
-    case D3D10_SRV_DIMENSION_UNKNOWN:
+    case D3D10_DSV_DIMENSION_UNKNOWN:
     default:
         assert(0);
-        goto no_map;
+        return NULL;
     }
-    Subresource = MipSlice;
 
-    Width  = std::max(Width  >> MipSlice, 1U);
-    Height = std::max(Height >> MipSlice, 1U);
-    Depth  = std::max(Depth  >> MipSlice, 1U);
+    return getSubResourceImage(pDevice, pResource, Desc.Format, MipSlice);
+}
 
-    hr = mapResource(pStagingResource, Subresource, D3D10_MAP_READ, 0, &MappedSubresource);
-    if (FAILED(hr)) {
-        goto no_map;
-    }
 
-    image = ConvertImage(Desc.Format,
-                         MappedSubresource.pData,
-                         MappedSubresource.RowPitch,
-                         Width, Height);
+void
+dumpTextures(JSONWriter &json, ID3D10Device *pDevice)
+{
+    json.beginMember("textures");
+    json.beginObject();
 
-    unmapResource(pStagingResource, Subresource);
-no_map:
-    if (pStagingResource) {
-        pStagingResource->Release();
-    }
-no_staging:
-    if (pResource) {
-        pResource->Release();
+    ID3D10ShaderResourceView *pShaderResourceViews[D3D10_COMMONSHADER_SAMPLER_SLOT_COUNT];
+    pDevice->PSGetShaderResources(0, ARRAYSIZE(pShaderResourceViews), pShaderResourceViews);
+
+    for (UINT i = 0; i < ARRAYSIZE(pShaderResourceViews); ++i) {
+        if (!pShaderResourceViews[i]) {
+            continue;
+        }
+
+        image::Image *image;
+        image = getShaderResourceViewImage(pDevice, pShaderResourceViews[i]);
+        if (image) {
+            char label[64];
+            _snprintf(label, sizeof label, "PS_RESOURCE_%u", i);
+            json.beginMember(label);
+            json.writeImage(image, "UNKNOWN");
+            json.endMember(); // PS_RESOURCE_*
+        }
+
+        pShaderResourceViews[i]->Release();
     }
-    return image;
+
+    json.endObject();
+    json.endMember(); // textures
 }
 
 
@@ -374,10 +442,10 @@ dumpFramebuffer(JSONWriter &json, ID3D10Device *pDevice)
 
     ID3D10RenderTargetView *pRenderTargetViews[D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT];
     ID3D10DepthStencilView *pDepthStencilView;
-    pDevice->OMGetRenderTargets(D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT, pRenderTargetViews,
+    pDevice->OMGetRenderTargets(ARRAYSIZE(pRenderTargetViews), pRenderTargetViews,
                                 &pDepthStencilView);
 
-    for (UINT i = 0; i < D3D10_SIMULTANEOUS_RENDER_TARGET_COUNT; ++i) {
+    for (UINT i = 0; i < ARRAYSIZE(pRenderTargetViews); ++i) {
         if (!pRenderTargetViews[i]) {
             continue;
         }