summaryrefslogtreecommitdiffstats
path: root/tools/gfx/command-writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/command-writer.h')
-rw-r--r--tools/gfx/command-writer.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/gfx/command-writer.h b/tools/gfx/command-writer.h
index 8aba454f4..76a72edc3 100644
--- a/tools/gfx/command-writer.h
+++ b/tools/gfx/command-writer.h
@@ -10,7 +10,6 @@ namespace gfx
enum class CommandName
{
SetPipelineState,
- SetDescriptorSet,
BindRootShaderObject,
SetFramebuffer,
ClearFrame,
@@ -128,22 +127,6 @@ public:
m_commands.add(Command(CommandName::SetPipelineState, offset));
}
- void setDescriptorSet(
- PipelineType pipelineType,
- IPipelineLayout* layout,
- UInt index,
- IDescriptorSet* descriptorSet)
- {
- uint32_t pipelineLayoutOffset = encodeObject(layout);
- uint32_t descSetOffset = encodeObject(descriptorSet);
- m_commands.add(Command(
- CommandName::SetDescriptorSet,
- (uint32_t)pipelineType,
- pipelineLayoutOffset,
- (uint32_t)index,
- descSetOffset));
- }
-
void bindRootShaderObject(PipelineType pipelineType, IShaderObject* object)
{
auto rootOffset = encodeObject(object);