RAMSES Documentation  27.0.130
Information for RAMSES users and developers
FontInstanceOffsets.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2018 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_FONTINSTANCEOFFSETS_H
10 #define RAMSES_FONTINSTANCEOFFSETS_H
11 
13 #include <vector>
14 
15 namespace ramses
16 {
26  {
30  std::size_t beginOffset;
31  };
32 
34  using FontInstanceOffsets = std::vector<FontInstanceOffset>;
35 }
36 
37 #endif
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15
std::vector< FontInstanceOffset > FontInstanceOffsets
Vector of FontInstanceOffset elements.
Definition: FontInstanceOffsets.h:34
A list of tuples from font instances and offsets into a string.
Definition: FontInstanceOffsets.h:26
std::size_t beginOffset
Offset into string where to start.
Definition: FontInstanceOffsets.h:30
FontInstanceId fontInstance
Font instance to use starting at this offset.
Definition: FontInstanceOffsets.h:28