You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- vec4 getPosition()
- {
- return a_position;
- }
-
- #if defined(LIGHTING)
-
- vec3 getNormal()
- {
- return a_normal;
- }
-
- #if defined(BUMPED)
- vec3 getTangent()
- {
- return a_tangent;
- }
-
- vec3 getBinormal()
- {
- return a_binormal;
- }
- #endif
-
- #endif
|