mirror of
https://github.com/g-truc/glm.git
synced 2024-11-25 18:04:34 +00:00
Export symbols when compiling glm as shared lib
This commit is contained in:
parent
4137519418
commit
a9f29d9c4c
@ -67,3 +67,9 @@ else()
|
|||||||
add_library(glm::glm ALIAS glm)
|
add_library(glm::glm ALIAS glm)
|
||||||
target_link_libraries(glm INTERFACE glm-header-only)
|
target_link_libraries(glm INTERFACE glm-header-only)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
include(GenerateExportHeader)
|
||||||
|
generate_export_header(glm BASE_NAME glm)
|
||||||
|
target_include_directories(glm PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/..>)
|
||||||
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/glm_export.h
|
||||||
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/glm)
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
#ifndef GLM_ENABLE_EXPERIMENTAL
|
#ifndef GLM_ENABLE_EXPERIMENTAL
|
||||||
#define GLM_ENABLE_EXPERIMENTAL
|
#define GLM_ENABLE_EXPERIMENTAL
|
||||||
#endif
|
#endif
|
||||||
|
#include <glm/glm_export.h>
|
||||||
#include <glm/gtx/dual_quaternion.hpp>
|
#include <glm/gtx/dual_quaternion.hpp>
|
||||||
#include <glm/gtc/vec1.hpp>
|
#include <glm/gtc/vec1.hpp>
|
||||||
#include <glm/gtc/quaternion.hpp>
|
#include <glm/gtc/quaternion.hpp>
|
||||||
@ -14,250 +15,249 @@
|
|||||||
namespace glm
|
namespace glm
|
||||||
{
|
{
|
||||||
// tvec1 type explicit instantiation
|
// tvec1 type explicit instantiation
|
||||||
template struct vec<1, uint8, lowp>;
|
template struct GLM_EXPORT vec<1, uint8, lowp>;
|
||||||
template struct vec<1, uint16, lowp>;
|
template struct GLM_EXPORT vec<1, uint16, lowp>;
|
||||||
template struct vec<1, uint32, lowp>;
|
template struct GLM_EXPORT vec<1, uint32, lowp>;
|
||||||
template struct vec<1, uint64, lowp>;
|
template struct GLM_EXPORT vec<1, uint64, lowp>;
|
||||||
template struct vec<1, int8, lowp>;
|
template struct GLM_EXPORT vec<1, int8, lowp>;
|
||||||
template struct vec<1, int16, lowp>;
|
template struct GLM_EXPORT vec<1, int16, lowp>;
|
||||||
template struct vec<1, int32, lowp>;
|
template struct GLM_EXPORT vec<1, int32, lowp>;
|
||||||
template struct vec<1, int64, lowp>;
|
template struct GLM_EXPORT vec<1, int64, lowp>;
|
||||||
template struct vec<1, float32, lowp>;
|
template struct GLM_EXPORT vec<1, float32, lowp>;
|
||||||
template struct vec<1, float64, lowp>;
|
template struct GLM_EXPORT vec<1, float64, lowp>;
|
||||||
|
|
||||||
template struct vec<1, uint8, mediump>;
|
template struct GLM_EXPORT vec<1, uint8, mediump>;
|
||||||
template struct vec<1, uint16, mediump>;
|
template struct GLM_EXPORT vec<1, uint16, mediump>;
|
||||||
template struct vec<1, uint32, mediump>;
|
template struct GLM_EXPORT vec<1, uint32, mediump>;
|
||||||
template struct vec<1, uint64, mediump>;
|
template struct GLM_EXPORT vec<1, uint64, mediump>;
|
||||||
template struct vec<1, int8, mediump>;
|
template struct GLM_EXPORT vec<1, int8, mediump>;
|
||||||
template struct vec<1, int16, mediump>;
|
template struct GLM_EXPORT vec<1, int16, mediump>;
|
||||||
template struct vec<1, int32, mediump>;
|
template struct GLM_EXPORT vec<1, int32, mediump>;
|
||||||
template struct vec<1, int64, mediump>;
|
template struct GLM_EXPORT vec<1, int64, mediump>;
|
||||||
template struct vec<1, float32, mediump>;
|
template struct GLM_EXPORT vec<1, float32, mediump>;
|
||||||
template struct vec<1, float64, mediump>;
|
template struct GLM_EXPORT vec<1, float64, mediump>;
|
||||||
|
|
||||||
template struct vec<1, uint8, highp>;
|
template struct GLM_EXPORT vec<1, uint8, highp>;
|
||||||
template struct vec<1, uint16, highp>;
|
template struct GLM_EXPORT vec<1, uint16, highp>;
|
||||||
template struct vec<1, uint32, highp>;
|
template struct GLM_EXPORT vec<1, uint32, highp>;
|
||||||
template struct vec<1, uint64, highp>;
|
template struct GLM_EXPORT vec<1, uint64, highp>;
|
||||||
template struct vec<1, int8, highp>;
|
template struct GLM_EXPORT vec<1, int8, highp>;
|
||||||
template struct vec<1, int16, highp>;
|
template struct GLM_EXPORT vec<1, int16, highp>;
|
||||||
template struct vec<1, int32, highp>;
|
template struct GLM_EXPORT vec<1, int32, highp>;
|
||||||
template struct vec<1, int64, highp>;
|
template struct GLM_EXPORT vec<1, int64, highp>;
|
||||||
template struct vec<1, float32, highp>;
|
template struct GLM_EXPORT vec<1, float32, highp>;
|
||||||
template struct vec<1, float64, highp>;
|
template struct GLM_EXPORT vec<1, float64, highp>;
|
||||||
|
|
||||||
// tvec2 type explicit instantiation
|
// tvec2 type explicit instantiation
|
||||||
template struct vec<2, uint8, lowp>;
|
template struct GLM_EXPORT vec<2, uint8, lowp>;
|
||||||
template struct vec<2, uint16, lowp>;
|
template struct GLM_EXPORT vec<2, uint16, lowp>;
|
||||||
template struct vec<2, uint32, lowp>;
|
template struct GLM_EXPORT vec<2, uint32, lowp>;
|
||||||
template struct vec<2, uint64, lowp>;
|
template struct GLM_EXPORT vec<2, uint64, lowp>;
|
||||||
template struct vec<2, int8, lowp>;
|
template struct GLM_EXPORT vec<2, int8, lowp>;
|
||||||
template struct vec<2, int16, lowp>;
|
template struct GLM_EXPORT vec<2, int16, lowp>;
|
||||||
template struct vec<2, int32, lowp>;
|
template struct GLM_EXPORT vec<2, int32, lowp>;
|
||||||
template struct vec<2, int64, lowp>;
|
template struct GLM_EXPORT vec<2, int64, lowp>;
|
||||||
template struct vec<2, float32, lowp>;
|
template struct GLM_EXPORT vec<2, float32, lowp>;
|
||||||
template struct vec<2, float64, lowp>;
|
template struct GLM_EXPORT vec<2, float64, lowp>;
|
||||||
|
|
||||||
template struct vec<2, uint8, mediump>;
|
template struct GLM_EXPORT vec<2, uint8, mediump>;
|
||||||
template struct vec<2, uint16, mediump>;
|
template struct GLM_EXPORT vec<2, uint16, mediump>;
|
||||||
template struct vec<2, uint32, mediump>;
|
template struct GLM_EXPORT vec<2, uint32, mediump>;
|
||||||
template struct vec<2, uint64, mediump>;
|
template struct GLM_EXPORT vec<2, uint64, mediump>;
|
||||||
template struct vec<2, int8, mediump>;
|
template struct GLM_EXPORT vec<2, int8, mediump>;
|
||||||
template struct vec<2, int16, mediump>;
|
template struct GLM_EXPORT vec<2, int16, mediump>;
|
||||||
template struct vec<2, int32, mediump>;
|
template struct GLM_EXPORT vec<2, int32, mediump>;
|
||||||
template struct vec<2, int64, mediump>;
|
template struct GLM_EXPORT vec<2, int64, mediump>;
|
||||||
template struct vec<2, float32, mediump>;
|
template struct GLM_EXPORT vec<2, float32, mediump>;
|
||||||
template struct vec<2, float64, mediump>;
|
template struct GLM_EXPORT vec<2, float64, mediump>;
|
||||||
|
|
||||||
template struct vec<2, uint8, highp>;
|
template struct GLM_EXPORT vec<2, uint8, highp>;
|
||||||
template struct vec<2, uint16, highp>;
|
template struct GLM_EXPORT vec<2, uint16, highp>;
|
||||||
template struct vec<2, uint32, highp>;
|
template struct GLM_EXPORT vec<2, uint32, highp>;
|
||||||
template struct vec<2, uint64, highp>;
|
template struct GLM_EXPORT vec<2, uint64, highp>;
|
||||||
template struct vec<2, int8, highp>;
|
template struct GLM_EXPORT vec<2, int8, highp>;
|
||||||
template struct vec<2, int16, highp>;
|
template struct GLM_EXPORT vec<2, int16, highp>;
|
||||||
template struct vec<2, int32, highp>;
|
template struct GLM_EXPORT vec<2, int32, highp>;
|
||||||
template struct vec<2, int64, highp>;
|
template struct GLM_EXPORT vec<2, int64, highp>;
|
||||||
template struct vec<2, float32, highp>;
|
template struct GLM_EXPORT vec<2, float32, highp>;
|
||||||
template struct vec<2, float64, highp>;
|
template struct GLM_EXPORT vec<2, float64, highp>;
|
||||||
|
|
||||||
// tvec3 type explicit instantiation
|
// tvec3 type explicit instantiation
|
||||||
template struct vec<3, uint8, lowp>;
|
template struct GLM_EXPORT vec<3, uint8, lowp>;
|
||||||
template struct vec<3, uint16, lowp>;
|
template struct GLM_EXPORT vec<3, uint16, lowp>;
|
||||||
template struct vec<3, uint32, lowp>;
|
template struct GLM_EXPORT vec<3, uint32, lowp>;
|
||||||
template struct vec<3, uint64, lowp>;
|
template struct GLM_EXPORT vec<3, uint64, lowp>;
|
||||||
template struct vec<3, int8, lowp>;
|
template struct GLM_EXPORT vec<3, int8, lowp>;
|
||||||
template struct vec<3, int16, lowp>;
|
template struct GLM_EXPORT vec<3, int16, lowp>;
|
||||||
template struct vec<3, int32, lowp>;
|
template struct GLM_EXPORT vec<3, int32, lowp>;
|
||||||
template struct vec<3, int64, lowp>;
|
template struct GLM_EXPORT vec<3, int64, lowp>;
|
||||||
template struct vec<3, float32, lowp>;
|
template struct GLM_EXPORT vec<3, float32, lowp>;
|
||||||
template struct vec<3, float64, lowp>;
|
template struct GLM_EXPORT vec<3, float64, lowp>;
|
||||||
|
|
||||||
template struct vec<3, uint8, mediump>;
|
template struct GLM_EXPORT vec<3, uint8, mediump>;
|
||||||
template struct vec<3, uint16, mediump>;
|
template struct GLM_EXPORT vec<3, uint16, mediump>;
|
||||||
template struct vec<3, uint32, mediump>;
|
template struct GLM_EXPORT vec<3, uint32, mediump>;
|
||||||
template struct vec<3, uint64, mediump>;
|
template struct GLM_EXPORT vec<3, uint64, mediump>;
|
||||||
template struct vec<3, int8, mediump>;
|
template struct GLM_EXPORT vec<3, int8, mediump>;
|
||||||
template struct vec<3, int16, mediump>;
|
template struct GLM_EXPORT vec<3, int16, mediump>;
|
||||||
template struct vec<3, int32, mediump>;
|
template struct GLM_EXPORT vec<3, int32, mediump>;
|
||||||
template struct vec<3, int64, mediump>;
|
template struct GLM_EXPORT vec<3, int64, mediump>;
|
||||||
template struct vec<3, float32, mediump>;
|
template struct GLM_EXPORT vec<3, float32, mediump>;
|
||||||
template struct vec<3, float64, mediump>;
|
template struct GLM_EXPORT vec<3, float64, mediump>;
|
||||||
|
|
||||||
template struct vec<3, uint8, highp>;
|
template struct GLM_EXPORT vec<3, uint8, highp>;
|
||||||
template struct vec<3, uint16, highp>;
|
template struct GLM_EXPORT vec<3, uint16, highp>;
|
||||||
template struct vec<3, uint32, highp>;
|
template struct GLM_EXPORT vec<3, uint32, highp>;
|
||||||
template struct vec<3, uint64, highp>;
|
template struct GLM_EXPORT vec<3, uint64, highp>;
|
||||||
template struct vec<3, int8, highp>;
|
template struct GLM_EXPORT vec<3, int8, highp>;
|
||||||
template struct vec<3, int16, highp>;
|
template struct GLM_EXPORT vec<3, int16, highp>;
|
||||||
template struct vec<3, int32, highp>;
|
template struct GLM_EXPORT vec<3, int32, highp>;
|
||||||
template struct vec<3, int64, highp>;
|
template struct GLM_EXPORT vec<3, int64, highp>;
|
||||||
template struct vec<3, float32, highp>;
|
template struct GLM_EXPORT vec<3, float32, highp>;
|
||||||
template struct vec<3, float64, highp>;
|
template struct GLM_EXPORT vec<3, float64, highp>;
|
||||||
|
|
||||||
// tvec4 type explicit instantiation
|
// tvec4 type explicit instantiation
|
||||||
template struct vec<4, uint8, lowp>;
|
template struct GLM_EXPORT vec<4, uint8, lowp>;
|
||||||
template struct vec<4, uint16, lowp>;
|
template struct GLM_EXPORT vec<4, uint16, lowp>;
|
||||||
template struct vec<4, uint32, lowp>;
|
template struct GLM_EXPORT vec<4, uint32, lowp>;
|
||||||
template struct vec<4, uint64, lowp>;
|
template struct GLM_EXPORT vec<4, uint64, lowp>;
|
||||||
template struct vec<4, int8, lowp>;
|
template struct GLM_EXPORT vec<4, int8, lowp>;
|
||||||
template struct vec<4, int16, lowp>;
|
template struct GLM_EXPORT vec<4, int16, lowp>;
|
||||||
template struct vec<4, int32, lowp>;
|
template struct GLM_EXPORT vec<4, int32, lowp>;
|
||||||
template struct vec<4, int64, lowp>;
|
template struct GLM_EXPORT vec<4, int64, lowp>;
|
||||||
template struct vec<4, float32, lowp>;
|
template struct GLM_EXPORT vec<4, float32, lowp>;
|
||||||
template struct vec<4, float64, lowp>;
|
template struct GLM_EXPORT vec<4, float64, lowp>;
|
||||||
|
|
||||||
template struct vec<4, uint8, mediump>;
|
template struct GLM_EXPORT vec<4, uint8, mediump>;
|
||||||
template struct vec<4, uint16, mediump>;
|
template struct GLM_EXPORT vec<4, uint16, mediump>;
|
||||||
template struct vec<4, uint32, mediump>;
|
template struct GLM_EXPORT vec<4, uint32, mediump>;
|
||||||
template struct vec<4, uint64, mediump>;
|
template struct GLM_EXPORT vec<4, uint64, mediump>;
|
||||||
template struct vec<4, int8, mediump>;
|
template struct GLM_EXPORT vec<4, int8, mediump>;
|
||||||
template struct vec<4, int16, mediump>;
|
template struct GLM_EXPORT vec<4, int16, mediump>;
|
||||||
template struct vec<4, int32, mediump>;
|
template struct GLM_EXPORT vec<4, int32, mediump>;
|
||||||
template struct vec<4, int64, mediump>;
|
template struct GLM_EXPORT vec<4, int64, mediump>;
|
||||||
template struct vec<4, float32, mediump>;
|
template struct GLM_EXPORT vec<4, float32, mediump>;
|
||||||
template struct vec<4, float64, mediump>;
|
template struct GLM_EXPORT vec<4, float64, mediump>;
|
||||||
|
|
||||||
template struct vec<4, uint8, highp>;
|
template struct GLM_EXPORT vec<4, uint8, highp>;
|
||||||
template struct vec<4, uint16, highp>;
|
template struct GLM_EXPORT vec<4, uint16, highp>;
|
||||||
template struct vec<4, uint32, highp>;
|
template struct GLM_EXPORT vec<4, uint32, highp>;
|
||||||
template struct vec<4, uint64, highp>;
|
template struct GLM_EXPORT vec<4, uint64, highp>;
|
||||||
template struct vec<4, int8, highp>;
|
template struct GLM_EXPORT vec<4, int8, highp>;
|
||||||
template struct vec<4, int16, highp>;
|
template struct GLM_EXPORT vec<4, int16, highp>;
|
||||||
template struct vec<4, int32, highp>;
|
template struct GLM_EXPORT vec<4, int32, highp>;
|
||||||
template struct vec<4, int64, highp>;
|
template struct GLM_EXPORT vec<4, int64, highp>;
|
||||||
template struct vec<4, float32, highp>;
|
template struct GLM_EXPORT vec<4, float32, highp>;
|
||||||
template struct vec<4, float64, highp>;
|
template struct GLM_EXPORT vec<4, float64, highp>;
|
||||||
|
|
||||||
// tmat2x2 type explicit instantiation
|
// tmat2x2 type explicit instantiation
|
||||||
template struct mat<2, 2, float32, lowp>;
|
template struct GLM_EXPORT mat<2, 2, float32, lowp>;
|
||||||
template struct mat<2, 2, float64, lowp>;
|
template struct GLM_EXPORT mat<2, 2, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<2, 2, float32, mediump>;
|
template struct GLM_EXPORT mat<2, 2, float32, mediump>;
|
||||||
template struct mat<2, 2, float64, mediump>;
|
template struct GLM_EXPORT mat<2, 2, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<2, 2, float32, highp>;
|
template struct GLM_EXPORT mat<2, 2, float32, highp>;
|
||||||
template struct mat<2, 2, float64, highp>;
|
template struct GLM_EXPORT mat<2, 2, float64, highp>;
|
||||||
|
|
||||||
// tmat2x3 type explicit instantiation
|
// tmat2x3 type explicit instantiation
|
||||||
template struct mat<2, 3, float32, lowp>;
|
template struct GLM_EXPORT mat<2, 3, float32, lowp>;
|
||||||
template struct mat<2, 3, float64, lowp>;
|
template struct GLM_EXPORT mat<2, 3, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<2, 3, float32, mediump>;
|
template struct GLM_EXPORT mat<2, 3, float32, mediump>;
|
||||||
template struct mat<2, 3, float64, mediump>;
|
template struct GLM_EXPORT mat<2, 3, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<2, 3, float32, highp>;
|
template struct GLM_EXPORT mat<2, 3, float32, highp>;
|
||||||
template struct mat<2, 3, float64, highp>;
|
template struct GLM_EXPORT mat<2, 3, float64, highp>;
|
||||||
|
|
||||||
// tmat2x4 type explicit instantiation
|
// tmat2x4 type explicit instantiation
|
||||||
template struct mat<2, 4, float32, lowp>;
|
template struct GLM_EXPORT mat<2, 4, float32, lowp>;
|
||||||
template struct mat<2, 4, float64, lowp>;
|
template struct GLM_EXPORT mat<2, 4, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<2, 4, float32, mediump>;
|
template struct GLM_EXPORT mat<2, 4, float32, mediump>;
|
||||||
template struct mat<2, 4, float64, mediump>;
|
template struct GLM_EXPORT mat<2, 4, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<2, 4, float32, highp>;
|
template struct GLM_EXPORT mat<2, 4, float32, highp>;
|
||||||
template struct mat<2, 4, float64, highp>;
|
template struct GLM_EXPORT mat<2, 4, float64, highp>;
|
||||||
|
|
||||||
// tmat3x2 type explicit instantiation
|
// tmat3x2 type explicit instantiation
|
||||||
template struct mat<3, 2, float32, lowp>;
|
template struct GLM_EXPORT mat<3, 2, float32, lowp>;
|
||||||
template struct mat<3, 2, float64, lowp>;
|
template struct GLM_EXPORT mat<3, 2, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<3, 2, float32, mediump>;
|
template struct GLM_EXPORT mat<3, 2, float32, mediump>;
|
||||||
template struct mat<3, 2, float64, mediump>;
|
template struct GLM_EXPORT mat<3, 2, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<3, 2, float32, highp>;
|
template struct GLM_EXPORT mat<3, 2, float32, highp>;
|
||||||
template struct mat<3, 2, float64, highp>;
|
template struct GLM_EXPORT mat<3, 2, float64, highp>;
|
||||||
|
|
||||||
// tmat3x3 type explicit instantiation
|
// tmat3x3 type explicit instantiation
|
||||||
template struct mat<3, 3, float32, lowp>;
|
template struct GLM_EXPORT mat<3, 3, float32, lowp>;
|
||||||
template struct mat<3, 3, float64, lowp>;
|
template struct GLM_EXPORT mat<3, 3, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<3, 3, float32, mediump>;
|
template struct GLM_EXPORT mat<3, 3, float32, mediump>;
|
||||||
template struct mat<3, 3, float64, mediump>;
|
template struct GLM_EXPORT mat<3, 3, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<3, 3, float32, highp>;
|
template struct GLM_EXPORT mat<3, 3, float32, highp>;
|
||||||
template struct mat<3, 3, float64, highp>;
|
template struct GLM_EXPORT mat<3, 3, float64, highp>;
|
||||||
|
|
||||||
// tmat3x4 type explicit instantiation
|
// tmat3x4 type explicit instantiation
|
||||||
template struct mat<3, 4, float32, lowp>;
|
template struct GLM_EXPORT mat<3, 4, float32, lowp>;
|
||||||
template struct mat<3, 4, float64, lowp>;
|
template struct GLM_EXPORT mat<3, 4, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<3, 4, float32, mediump>;
|
template struct GLM_EXPORT mat<3, 4, float32, mediump>;
|
||||||
template struct mat<3, 4, float64, mediump>;
|
template struct GLM_EXPORT mat<3, 4, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<3, 4, float32, highp>;
|
template struct GLM_EXPORT mat<3, 4, float32, highp>;
|
||||||
template struct mat<3, 4, float64, highp>;
|
template struct GLM_EXPORT mat<3, 4, float64, highp>;
|
||||||
|
|
||||||
// tmat4x2 type explicit instantiation
|
// tmat4x2 type explicit instantiation
|
||||||
template struct mat<4, 2, float32, lowp>;
|
template struct GLM_EXPORT mat<4, 2, float32, lowp>;
|
||||||
template struct mat<4, 2, float64, lowp>;
|
template struct GLM_EXPORT mat<4, 2, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<4, 2, float32, mediump>;
|
template struct GLM_EXPORT mat<4, 2, float32, mediump>;
|
||||||
template struct mat<4, 2, float64, mediump>;
|
template struct GLM_EXPORT mat<4, 2, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<4, 2, float32, highp>;
|
template struct GLM_EXPORT mat<4, 2, float32, highp>;
|
||||||
template struct mat<4, 2, float64, highp>;
|
template struct GLM_EXPORT mat<4, 2, float64, highp>;
|
||||||
|
|
||||||
// tmat4x3 type explicit instantiation
|
// tmat4x3 type explicit instantiation
|
||||||
template struct mat<4, 3, float32, lowp>;
|
template struct GLM_EXPORT mat<4, 3, float32, lowp>;
|
||||||
template struct mat<4, 3, float64, lowp>;
|
template struct GLM_EXPORT mat<4, 3, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<4, 3, float32, mediump>;
|
template struct GLM_EXPORT mat<4, 3, float32, mediump>;
|
||||||
template struct mat<4, 3, float64, mediump>;
|
template struct GLM_EXPORT mat<4, 3, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<4, 3, float32, highp>;
|
template struct GLM_EXPORT mat<4, 3, float32, highp>;
|
||||||
template struct mat<4, 3, float64, highp>;
|
template struct GLM_EXPORT mat<4, 3, float64, highp>;
|
||||||
|
|
||||||
// tmat4x4 type explicit instantiation
|
// tmat4x4 type explicit instantiation
|
||||||
template struct mat<4, 4, float32, lowp>;
|
template struct GLM_EXPORT mat<4, 4, float32, lowp>;
|
||||||
template struct mat<4, 4, float64, lowp>;
|
template struct GLM_EXPORT mat<4, 4, float64, lowp>;
|
||||||
|
|
||||||
template struct mat<4, 4, float32, mediump>;
|
template struct GLM_EXPORT mat<4, 4, float32, mediump>;
|
||||||
template struct mat<4, 4, float64, mediump>;
|
template struct GLM_EXPORT mat<4, 4, float64, mediump>;
|
||||||
|
|
||||||
template struct mat<4, 4, float32, highp>;
|
template struct GLM_EXPORT mat<4, 4, float32, highp>;
|
||||||
template struct mat<4, 4, float64, highp>;
|
template struct GLM_EXPORT mat<4, 4, float64, highp>;
|
||||||
|
|
||||||
// tquat type explicit instantiation
|
// tquat type explicit instantiation
|
||||||
template struct qua<float32, lowp>;
|
template struct GLM_EXPORT qua<float32, lowp>;
|
||||||
template struct qua<float64, lowp>;
|
template struct GLM_EXPORT qua<float64, lowp>;
|
||||||
|
|
||||||
template struct qua<float32, mediump>;
|
template struct GLM_EXPORT qua<float32, mediump>;
|
||||||
template struct qua<float64, mediump>;
|
template struct GLM_EXPORT qua<float64, mediump>;
|
||||||
|
|
||||||
template struct qua<float32, highp>;
|
template struct GLM_EXPORT qua<float32, highp>;
|
||||||
template struct qua<float64, highp>;
|
template struct GLM_EXPORT qua<float64, highp>;
|
||||||
|
|
||||||
//tdualquat type explicit instantiation
|
// tdualquat type explicit instantiation
|
||||||
template struct tdualquat<float32, lowp>;
|
template struct GLM_EXPORT tdualquat<float32, lowp>;
|
||||||
template struct tdualquat<float64, lowp>;
|
template struct GLM_EXPORT tdualquat<float64, lowp>;
|
||||||
|
|
||||||
template struct tdualquat<float32, mediump>;
|
template struct GLM_EXPORT tdualquat<float32, mediump>;
|
||||||
template struct tdualquat<float64, mediump>;
|
template struct GLM_EXPORT tdualquat<float64, mediump>;
|
||||||
|
|
||||||
template struct tdualquat<float32, highp>;
|
template struct GLM_EXPORT tdualquat<float32, highp>;
|
||||||
template struct tdualquat<float64, highp>;
|
template struct GLM_EXPORT tdualquat<float64, highp>;
|
||||||
|
|
||||||
}//namespace glm
|
|
||||||
|
|
||||||
|
} // namespace glm
|
||||||
|
Loading…
Reference in New Issue
Block a user