Ocean
Loading...
Searching...
No Matches
GLESIndependentPrimitive.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#ifndef META_OCEAN_RENDERING_GLES_INDEPENDENT_PRIMITIVE_H
9#define META_OCEAN_RENDERING_GLES_INDEPENDENT_PRIMITIVE_H
10
13
15
16namespace Ocean
17{
18
19namespace Rendering
20{
21
22namespace GLESceneGraph
23{
24
25/**
26 * This class implements the base class for all GLESceneGraph independent primitive.
27 * @ingroup renderinggles
28 */
29class OCEAN_RENDERING_GLES_EXPORT GLESIndependentPrimitive :
30 virtual public GLESPrimitive,
31 virtual public IndependentPrimitive
32{
33 protected:
34
35 /**
36 * Creates a new GLESceneGraph independent primitive object.
37 */
39
40 /**
41 * Destructs a GLESceneGraph independent primitive object.
42 */
44};
45
46}
47
48}
49
50}
51
52#endif // META_OCEAN_RENDERING_GLES_INDEPENDENT_PRIMITIVE_H
This class implements the base class for all GLESceneGraph independent primitive.
Definition GLESIndependentPrimitive.h:32
GLESIndependentPrimitive()
Creates a new GLESceneGraph independent primitive object.
~GLESIndependentPrimitive() override
Destructs a GLESceneGraph independent primitive object.
This class implements the base class for all GLESceneGraph primitive objects.
Definition GLESPrimitive.h:32
This class is the base class for all independent primitive objects.
Definition IndependentPrimitive.h:25
The namespace covering the entire Ocean framework.
Definition Accessor.h:15