summaryrefslogtreecommitdiffstats
path: root/tools/gfx/cpu/render-cpu.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-06-23 11:33:30 -0700
committerGitHub <noreply@github.com>2021-06-23 11:33:30 -0700
commit0f2d11dc994c6323b4bfb955b522f3123e731fe0 (patch)
treebc1316bba9217b22f3708dcb03727d70d2d8351a /tools/gfx/cpu/render-cpu.cpp
parent0afa24a3fe7d0e1787cc909f9c7641f477c30e5c (diff)
[gfx] Add `IBufferResource::getDeviceAddress()`. (#1892)
Diffstat (limited to 'tools/gfx/cpu/render-cpu.cpp')
-rw-r--r--tools/gfx/cpu/render-cpu.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/gfx/cpu/render-cpu.cpp b/tools/gfx/cpu/render-cpu.cpp
index f635cf727..af1fcc65a 100644
--- a/tools/gfx/cpu/render-cpu.cpp
+++ b/tools/gfx/cpu/render-cpu.cpp
@@ -37,7 +37,8 @@ public:
SlangResult init()
{
m_data = malloc(m_desc.sizeInBytes);
- if(!m_data) return SLANG_E_OUT_OF_MEMORY;
+ if (!m_data)
+ return SLANG_E_OUT_OF_MEMORY;
return SLANG_OK;
}
@@ -48,6 +49,11 @@ public:
}
void* m_data = nullptr;
+
+ virtual SLANG_NO_THROW DeviceAddress SLANG_MCALL getDeviceAddress() override
+ {
+ return (DeviceAddress)m_data;
+ }
};
struct CPUTextureBaseShapeInfo