summaryrefslogtreecommitdiff
path: root/tools/render-test/cpu-compute-util.h
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-01-14 15:48:54 -0800
committerGitHub <noreply@github.com>2021-01-14 15:48:54 -0800
commitf834f25794cfb746079e92d58c7410b767c57208 (patch)
tree583a86d4cb2e446c2c06f9d786996d10647baf84 /tools/render-test/cpu-compute-util.h
parentac76997690a39605b2b8fbd63de9cbbbc2af2a73 (diff)
COM-ify all slang-gfx interfaces. (#1656)
* COM-ify all slang-gfx interfaces.
Diffstat (limited to 'tools/render-test/cpu-compute-util.h')
-rw-r--r--tools/render-test/cpu-compute-util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/render-test/cpu-compute-util.h b/tools/render-test/cpu-compute-util.h
index 56d510818..b1de6ce85 100644
--- a/tools/render-test/cpu-compute-util.h
+++ b/tools/render-test/cpu-compute-util.h
@@ -20,7 +20,7 @@ struct CPUComputeUtil
GroupRange,
};
- struct Resource : public RefObject
+ struct Resource : public Slang::RefObject
{
void* getInterface() const { return m_interface; }
void* m_interface;
@@ -33,10 +33,10 @@ struct CPUComputeUtil
CPULikeBindRoot m_bindRoot;
/// Buffers are held in same order as entries in layout (useful for dumping out bindings)
- List<BindSet::Value*> m_buffers;
+ Slang::List<BindSet::Value*> m_buffers;
/// Bindless resource objects
- Slang::OrderedDictionary<Slang::String, RefPtr<Resource>> m_bindlessResources;
+ Slang::OrderedDictionary<Slang::String, Slang::RefPtr<Resource>> m_bindlessResources;
};
struct ExecuteInfo