VTK  9.4.20250405
vtkWebGPURenderPipelineCache.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
26#ifndef vtkWebGPURenderPipelineCache_h
27#define vtkWebGPURenderPipelineCache_h
28
29#include "vtkObject.h"
30
31#include "vtkRenderingWebGPUModule.h" // for export macro
32#include "vtk_wgpu.h" // for webgpu
33
34VTK_ABI_NAMESPACE_BEGIN
35
38class vtkWindow;
39
40class VTKRENDERINGWEBGPU_EXPORT vtkWebGPURenderPipelineCache : public vtkObject
41{
42public:
45 void PrintSelf(ostream& os, vtkIndent indent) override;
46
51
55 wgpu::RenderPipeline GetRenderPipeline(const std::string& key);
56
60 std::string GetPipelineKey(wgpu::RenderPipelineDescriptor* descriptor, const char* shaderSource);
61
66 void CreateRenderPipeline(wgpu::RenderPipelineDescriptor* descriptor,
67 vtkWebGPURenderer* wgpuRenderer, const char* shaderSource);
68
69 void CreateRenderPipeline(wgpu::RenderPipelineDescriptor* descriptor,
70 vtkWebGPURenderWindow* wgpuRenderWindow, const char* shaderSource);
71
75 void DestroyRenderPipeline(const std::string& key);
76
77protected:
80
81private:
83 void operator=(const vtkWebGPURenderPipelineCache&) = delete;
84
85 class vtkInternals;
86 std::unique_ptr<vtkInternals> Internals;
87};
88
89VTK_ABI_NAMESPACE_END
90#endif
a simple class to control print indentation
Definition vtkIndent.h:108
abstract base class for most VTK objects
Definition vtkObject.h:162
Class to create and retrieve render pipelines based on a given key.
static vtkWebGPURenderPipelineCache * New()
void DestroyRenderPipeline(const std::string &key)
Destroy the render pipeline associated with the given hash.
~vtkWebGPURenderPipelineCache() override
void CreateRenderPipeline(wgpu::RenderPipelineDescriptor *descriptor, vtkWebGPURenderWindow *wgpuRenderWindow, const char *shaderSource)
void ReleaseGraphicsResources(vtkWindow *w)
Reset the pipeline cache.
wgpu::RenderPipeline GetRenderPipeline(const std::string &key)
Get a render pipeline associated with the given hash.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
std::string GetPipelineKey(wgpu::RenderPipelineDescriptor *descriptor, const char *shaderSource)
Get a unique hash for the given combination of render pipeline descriptor and shader source.
void CreateRenderPipeline(wgpu::RenderPipelineDescriptor *descriptor, vtkWebGPURenderer *wgpuRenderer, const char *shaderSource)
Create a render pipeline for the given combination of render pipeline descriptor and shader source.
WebGPU rendering window.
window superclass for vtkRenderWindow
Definition vtkWindow.h:48