X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbackends%2Fvulkan%2Fpipelinecache.h;h=5023b40c38a2f0cf1a7bfdfdcdcce9aae5482992;hp=1017a93ff6b63ed7bef01dc01190dab04024afc3;hb=370eb9e;hpb=1ed4d66194a8a86413701a4c4e4178c2fb0a4ded diff --git a/source/backends/vulkan/pipelinecache.h b/source/backends/vulkan/pipelinecache.h index 1017a93f..5023b40c 100644 --- a/source/backends/vulkan/pipelinecache.h +++ b/source/backends/vulkan/pipelinecache.h @@ -16,10 +16,8 @@ class PipelineCache { private: Device &device; - VkDescriptorPool descriptor_pool; std::map render_passes; std::map pipelines; - std::map descriptor_sets; public: PipelineCache(Device &); @@ -28,7 +26,6 @@ public: VkRenderPass get_render_pass(const FrameFormat &, bool, bool, bool); VkPipeline get_pipeline(const PipelineState &); - VkDescriptorSet get_descriptor_set(const PipelineState &, unsigned); }; } // namespace GL