Loading...
Searching...
No Matches
rendererPlugin.h
1//
2// Copyright 2017 Pixar
3//
4// Licensed under the Apache License, Version 2.0 (the "Apache License")
5// with the following modification; you may not use this file except in
6// compliance with the Apache License and the following modification to it:
7// Section 6. Trademarks. is deleted and replaced with:
8//
9// 6. Trademarks. This License does not grant permission to use the trade
10// names, trademarks, service marks, or product names of the Licensor
11// and its affiliates, except as required to comply with Section 4(c) of
12// the License and to reproduce the content of the NOTICE file.
13//
14// You may obtain a copy of the Apache License at
15//
16// http://www.apache.org/licenses/LICENSE-2.0
17//
18// Unless required by applicable law or agreed to in writing, software
19// distributed under the Apache License with the above modification is
20// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21// KIND, either express or implied. See the Apache License for the specific
22// language governing permissions and limitations under the Apache License.
23//
24#ifndef PXR_IMAGING_HD_RENDERER_PLUGIN_H
25#define PXR_IMAGING_HD_RENDERER_PLUGIN_H
26
27#include "pxr/pxr.h"
28#include "pxr/imaging/hd/api.h"
29#include "pxr/imaging/hf/pluginBase.h"
30#include "pxr/imaging/hd/renderDelegate.h"
31
32PXR_NAMESPACE_OPEN_SCOPE
33
34class SdfPath;
35class HdRenderIndex;
37
50public:
51
57 HD_API
59 HdRenderSettingsMap const &settingsMap = {});
60
64 HD_API
66
75 virtual HdRenderDelegate *CreateRenderDelegate() = 0;
76
85 HD_API
86 virtual HdRenderDelegate *CreateRenderDelegate(
87 HdRenderSettingsMap const& settingsMap);
88
95 virtual void DeleteRenderDelegate(HdRenderDelegate *renderDelegate) = 0;
96
106 virtual bool IsSupported(bool gpuEnabled = true) const = 0;
107
108protected:
109 HdRendererPlugin() = default;
110 HD_API
111 ~HdRendererPlugin() override;
112
113private:
114 // This class doesn't require copy support.
115 HdRendererPlugin(const HdRendererPlugin &) = delete;
116 HdRendererPlugin &operator =(const HdRendererPlugin &) = delete;
117
118};
119
120
121PXR_NAMESPACE_CLOSE_SCOPE
122
123#endif // PXR_IMAGING_HD_RENDERER_PLUGIN_H
A (movable) handle for a render delegate that was created using a a plugin.
The Hydra render index is a flattened representation of the client scene graph, which may be composed...
Definition: renderIndex.h:121
This class defines a renderer plugin interface for Hydra.
HD_API TfToken GetPluginId() const
Look-up plugin id in plugin registry.
virtual void DeleteRenderDelegate(HdRenderDelegate *renderDelegate)=0
Clients should use CreateDelegate since this method will eventually become protected.
virtual bool IsSupported(bool gpuEnabled=true) const =0
Returns true if this renderer plugin is supported in the running process and false if not.
HD_API HdPluginRenderDelegateUniqueHandle CreateDelegate(HdRenderSettingsMap const &settingsMap={})
Create a render delegate through the plugin and wrap it in a handle that keeps this plugin alive unti...
virtual HD_API HdRenderDelegate * CreateRenderDelegate(HdRenderSettingsMap const &settingsMap)
Clients should use CreateDelegate since this method will eventually become protected.
virtual HdRenderDelegate * CreateRenderDelegate()=0
Clients should use CreateDelegate since this method will eventually become protected,...
Base class for all hydra plugin classes.
Definition: pluginBase.h:40
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:290
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:88