Loading [MathJax]/extensions/TeX/AMSsymbols.js
Radium Engine
1.5.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
c
d
f
g
i
l
m
n
o
p
q
r
s
t
v
Functions
a
c
d
f
g
i
l
n
o
p
q
r
s
t
v
Variables
Typedefs
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
Variables
b
d
f
h
i
m
n
s
t
v
w
Typedefs
a
b
c
f
g
i
k
o
r
s
t
u
v
Enumerations
Enumerator
Related Functions
Files
File List
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
StandardAttribNames.hpp
1
#pragma once
2
3
#include <Core/RaCore.hpp>
4
5
namespace
Ra
{
6
namespace
Core {
7
namespace
Geometry {
8
11
enum
MeshAttrib : uint {
12
VERTEX_POSITION = 0,
13
VERTEX_NORMAL,
14
VERTEX_TANGENT,
15
VERTEX_BITANGENT,
16
VERTEX_TEXCOORD,
17
VERTEX_COLOR,
18
VERTEX_WEIGHTS,
19
VERTEX_WEIGHT_IDX,
20
};
21
23
inline
const
std::string& getAttribName( MeshAttrib index ) {
24
static
const
std::string g_attribName[] = {
"in_position"
,
25
"in_normal"
,
26
"in_tangent"
,
27
"in_bitangent"
,
28
"in_texcoord"
,
29
"in_color"
,
30
"in_weight"
,
31
"in_weight_idx"
};
32
return
g_attribName[index];
33
}
34
35
}
// namespace Geometry
36
}
// namespace Core
37
}
// namespace Ra
Ra
Definition:
Cage.cpp:3
src
Core
Geometry
StandardAttribNames.hpp
Generated on Wed Apr 5 2023 15:07:31 for Radium Engine by
1.9.1