Gazebo Rendering
API Reference
8.2.2
insert_drive_file
Tutorials
library_books
Classes
toc
Namespaces
insert_drive_file
Files
launch
Gazebo Website
Index
List
Hierarchy
Members: All
Members: Functions
Members: Variables
Members: Typedefs
Members: Enumerations
Members: Enumerator
List
Members
Functions
Typedefs
Variables
Enumerations
Enumerator
src
gz-rendering
ogre2
include
gz
rendering
ogre2
Ogre2RenderPass.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2019 Open Source Robotics Foundation
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*
16
*/
17
#ifndef GZ_RENDERING_OGRE2_OGRE2RENDERPASS_HH_
18
#define GZ_RENDERING_OGRE2_OGRE2RENDERPASS_HH_
19
20
#include <memory>
21
#include <string>
22
23
#include "
gz/rendering/base/BaseRenderPass.hh
"
24
#include "gz/rendering/ogre2/Export.hh"
25
#include "
gz/rendering/ogre2/Ogre2Object.hh
"
26
27
28
#ifdef _MSC_VER
29
#pragma warning(push)
30
// Suppress dll-interface warning. This should no longer be needed in
31
// gz-rendering9 as visibility changed to hidden by default.
32
#pragma warning(disable:4251)
33
#endif
34
35
namespace
Ogre
36
{
37
class
CompositorWorkspace;
38
}
39
40
namespace
gz
41
{
42
namespace
rendering
43
{
44
inline
namespace
GZ_RENDERING_VERSION_NAMESPACE {
45
//
46
// forward declaration
47
class
Ogre2RenderPassPrivate;
48
49
/* \class Ogre2RenderPass Ogre2RenderPass.hh \
50
* gz/rendering/ogre2/Ogre2RenderPass.hh
51
*/
65
class
GZ_RENDERING_OGRE2_VISIBLE
Ogre2RenderPass
:
66
public
BaseRenderPass
<Ogre2Object>
67
{
69
protected
:
Ogre2RenderPass
();
70
72
public
:
virtual
~Ogre2RenderPass
();
73
74
// Documentation inherited.
75
public
:
void
Destroy
()
override
;
76
79
public
:
std::string
OgreCompositorNodeDefinitionName
()
const
;
80
83
public
:
virtual
void
WorkspaceAdded
(
84
Ogre::CompositorWorkspace *_workspace);
85
88
public
:
virtual
void
WorkspaceRemoved
(
89
Ogre::CompositorWorkspace *_workspace);
90
92
public
:
virtual
void
CreateRenderPass
();
93
95
protected
:
std::string
ogreCompositorNodeDefName
;
96
98
private
:
std::unique_ptr<Ogre2RenderPassPrivate>
dataPtr;
99
};
100
}
101
}
102
}
103
104
#ifdef _MSC_VER
105
#pragma warning(pop)
106
#endif
107
108
#endif