RAMSES Documentation  27.0.130
Information for RAMSES users and developers
RenderPassGroupIterator.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2014 BMW Car IT GmbH
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_RENDERPASSGROUPITERATOR_H
10 #define RAMSES_RENDERPASSGROUPITERATOR_H
11 
13 
14 namespace ramses
15 {
16  class RenderPass;
17  class RenderGroup;
18  class RenderGroupImpl;
19  template <typename T>
20  class IteratorImpl;
21 
26  {
27  public:
33  explicit RenderPassGroupIterator(const RenderPass& renderPass);
34 
39 
48  const RenderGroup* getNext();
49 
50  private:
52  RenderPassGroupIterator& operator=(const RenderPassGroupIterator& iterator);
54  };
55 }
56 
57 #endif
#define RAMSES_API
Definition: APIExport.h:35
The RenderGroup is a container used to collect renderables which are supposed to be rendered together...
Definition: RenderGroup.h:31
The RenderPassGroupIterator traverses RenderGroups in a RenderPass.
Definition: RenderPassGroupIterator.h:26
const RenderGroup * getNext()
Iterate through all RenderGroups. RenderGroups will be iterated over in order of adding,...
RenderPassGroupIterator(const RenderPass &renderPass)
RenderPassGroupIterator constructor.
The RenderPass is a container used to collect meshes which are supposed to be rendered together.
Definition: RenderPass.h:31
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15