Initialise repo
This commit is contained in:
commit
04e9f7bf85
45
.clang-format
Normal file
45
.clang-format
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
ColumnLimit: 80,
|
||||||
|
TabWidth: 4,
|
||||||
|
IndentWidth: 4, # 1 tab
|
||||||
|
UseTab: ForIndentation,
|
||||||
|
BreakBeforeBraces: Allman,
|
||||||
|
PointerBindsToType: false,
|
||||||
|
###
|
||||||
|
AlwaysBreakAfterDefinitionReturnType: false,
|
||||||
|
AlwaysBreakTemplateDeclarations: true,
|
||||||
|
AlwaysBreakBeforeMultilineStrings: true,
|
||||||
|
IndentFunctionDeclarationAfterType: false,
|
||||||
|
#
|
||||||
|
AccessModifierOffset: -4, # 1 tab
|
||||||
|
AlignAfterOpenBracket: true,
|
||||||
|
AlignConsecutiveAssignments: true,
|
||||||
|
AlignTrailingComments: true,
|
||||||
|
#
|
||||||
|
AllowAllParametersOfDeclarationOnNextLine: true,
|
||||||
|
AllowShortBlocksOnASingleLine: false,
|
||||||
|
AllowShortIfStatementsOnASingleLine: false,
|
||||||
|
AllowShortLoopsOnASingleLine: false,
|
||||||
|
#
|
||||||
|
BinPackArguments: true,
|
||||||
|
BinPackParameters: true,
|
||||||
|
#
|
||||||
|
BreakConstructorInitializersBeforeComma: true,
|
||||||
|
ConstructorInitializerIndentWidth: 0,
|
||||||
|
#
|
||||||
|
IndentCaseLabels: false,
|
||||||
|
#
|
||||||
|
MaxEmptyLinesToKeep: 1,
|
||||||
|
NamespaceIndentation: None,
|
||||||
|
#
|
||||||
|
SpaceBeforeAssignmentOperators: true,
|
||||||
|
SpaceInEmptyParentheses: false,
|
||||||
|
SpacesBeforeTrailingComments: 1,
|
||||||
|
SpacesInAngles: false,
|
||||||
|
SpacesInCStyleCastParentheses: false,
|
||||||
|
SpacesInParentheses: false,
|
||||||
|
SpacesInSquareBrackets: false,
|
||||||
|
#
|
||||||
|
Cpp11BracedListStyle: true,
|
||||||
|
Standard: Cpp11,
|
||||||
|
}
|
63
.gitattributes
vendored
Normal file
63
.gitattributes
vendored
Normal file
@ -0,0 +1,63 @@
|
|||||||
|
###############################################################################
|
||||||
|
# Set default behavior to automatically normalize line endings.
|
||||||
|
###############################################################################
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set default behavior for command prompt diff.
|
||||||
|
#
|
||||||
|
# This is need for earlier builds of msysgit that does not have it on by
|
||||||
|
# default for csharp files.
|
||||||
|
# Note: This is only used by command line
|
||||||
|
###############################################################################
|
||||||
|
#*.cs diff=csharp
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set the merge driver for project and solution files
|
||||||
|
#
|
||||||
|
# Merging from the command prompt will add diff markers to the files if there
|
||||||
|
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||||
|
# the diff markers are never inserted). Diff markers may cause the following
|
||||||
|
# file extensions to fail to load in VS. An alternative would be to treat
|
||||||
|
# these files as binary and thus will always conflict and require user
|
||||||
|
# intervention with every merge. To do so, just uncomment the entries below
|
||||||
|
###############################################################################
|
||||||
|
#*.sln merge=binary
|
||||||
|
#*.csproj merge=binary
|
||||||
|
#*.vbproj merge=binary
|
||||||
|
#*.vcxproj merge=binary
|
||||||
|
#*.vcproj merge=binary
|
||||||
|
#*.dbproj merge=binary
|
||||||
|
#*.fsproj merge=binary
|
||||||
|
#*.lsproj merge=binary
|
||||||
|
#*.wixproj merge=binary
|
||||||
|
#*.modelproj merge=binary
|
||||||
|
#*.sqlproj merge=binary
|
||||||
|
#*.wwaproj merge=binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# behavior for image files
|
||||||
|
#
|
||||||
|
# image files are treated as binary by default.
|
||||||
|
###############################################################################
|
||||||
|
#*.jpg binary
|
||||||
|
#*.png binary
|
||||||
|
#*.gif binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# diff behavior for common document formats
|
||||||
|
#
|
||||||
|
# Convert binary document formats to text before diffing them. This feature
|
||||||
|
# is only available from the command line. Turn it on by uncommenting the
|
||||||
|
# entries below.
|
||||||
|
###############################################################################
|
||||||
|
#*.doc diff=astextplain
|
||||||
|
#*.DOC diff=astextplain
|
||||||
|
#*.docx diff=astextplain
|
||||||
|
#*.DOCX diff=astextplain
|
||||||
|
#*.dot diff=astextplain
|
||||||
|
#*.DOT diff=astextplain
|
||||||
|
#*.pdf diff=astextplain
|
||||||
|
#*.PDF diff=astextplain
|
||||||
|
#*.rtf diff=astextplain
|
||||||
|
#*.RTF diff=astextplain
|
216
.gitignore
vendored
Normal file
216
.gitignore
vendored
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
*.swp
|
||||||
|
*.opendb
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
|
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||||
|
*.userprefs
|
||||||
|
|
||||||
|
# Build results
|
||||||
|
[Dd]ebug/
|
||||||
|
[Dd]ebugPublic/
|
||||||
|
[Rr]elease/
|
||||||
|
[Rr]eleases/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
build/
|
||||||
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
|
||||||
|
# Visual Studio 2015 cache/options directory
|
||||||
|
.vs/
|
||||||
|
|
||||||
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
# NUNIT
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
|
# DNX
|
||||||
|
project.lock.json
|
||||||
|
artifacts/
|
||||||
|
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*_i.h
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
|
*.tmp
|
||||||
|
*.tmp_proj
|
||||||
|
*.log
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
.builds
|
||||||
|
*.pidb
|
||||||
|
*.svclog
|
||||||
|
*.scc
|
||||||
|
|
||||||
|
# Chutzpah Test files
|
||||||
|
_Chutzpah*
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
*.vspx
|
||||||
|
|
||||||
|
# TFS 2012 Local Workspace
|
||||||
|
$tf/
|
||||||
|
|
||||||
|
# Guidance Automation Toolkit
|
||||||
|
*.gpState
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
|
# JustCode is a .NET coding add-in
|
||||||
|
.JustCode
|
||||||
|
|
||||||
|
# TeamCity is a build add-in
|
||||||
|
_TeamCity*
|
||||||
|
|
||||||
|
# DotCover is a Code Coverage Tool
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
# NCrunch
|
||||||
|
_NCrunch_*
|
||||||
|
.*crunch*.local.xml
|
||||||
|
|
||||||
|
# MightyMoose
|
||||||
|
*.mm.*
|
||||||
|
AutoTest.Net/
|
||||||
|
|
||||||
|
# Web workbench (sass)
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress/
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish/
|
||||||
|
|
||||||
|
# Publish Web Output
|
||||||
|
*.[Pp]ublish.xml
|
||||||
|
*.azurePubxml
|
||||||
|
## TODO: Comment the next line if you want to checkin your
|
||||||
|
## web deploy settings but do note that will include unencrypted
|
||||||
|
## passwords
|
||||||
|
#*.pubxml
|
||||||
|
|
||||||
|
*.publishproj
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nupkg
|
||||||
|
# The packages folder can be ignored because of Package Restore
|
||||||
|
**/packages/*
|
||||||
|
# except build/, which is used as an MSBuild target.
|
||||||
|
!**/packages/build/
|
||||||
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
#!**/packages/repositories.config
|
||||||
|
|
||||||
|
# Windows Azure Build Output
|
||||||
|
csx/
|
||||||
|
*.build.csdef
|
||||||
|
|
||||||
|
# Windows Store app package directory
|
||||||
|
AppPackages/
|
||||||
|
|
||||||
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
|
ClientBin/
|
||||||
|
[Ss]tyle[Cc]op.*
|
||||||
|
~$*
|
||||||
|
*~
|
||||||
|
*.dbmdl
|
||||||
|
*.dbproj.schemaview
|
||||||
|
*.pfx
|
||||||
|
*.publishsettings
|
||||||
|
node_modules/
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# RIA/Silverlight projects
|
||||||
|
Generated_Code/
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file
|
||||||
|
# to a newer Visual Studio version. Backup files are not needed,
|
||||||
|
# because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
UpgradeLog*.htm
|
||||||
|
|
||||||
|
# SQL Server files
|
||||||
|
*.mdf
|
||||||
|
*.ldf
|
||||||
|
|
||||||
|
# Business Intelligence projects
|
||||||
|
*.rdl.data
|
||||||
|
*.bim.layout
|
||||||
|
*.bim_*.settings
|
||||||
|
|
||||||
|
# Microsoft Fakes
|
||||||
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# Node.js Tools for Visual Studio
|
||||||
|
.ntvs_analysis.dat
|
||||||
|
|
||||||
|
# Visual Studio 6 build log
|
||||||
|
*.plg
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace options file
|
||||||
|
*.opt
|
||||||
|
|
||||||
|
# LightSwitch generated files
|
||||||
|
GeneratedArtifacts/
|
||||||
|
_Pvt_Extensions/
|
||||||
|
ModelManifest.xml
|
28
Dengine.sln
Normal file
28
Dengine.sln
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio 14
|
||||||
|
VisualStudioVersion = 14.0.24720.0
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Dengine", "Dengine.vcxproj", "{98153E55-A798-418B-9641-E1FEC5FC54C1}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Debug|x64.Build.0 = Debug|x64
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Debug|x86.ActiveCfg = Debug|Win32
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Debug|x86.Build.0 = Debug|Win32
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Release|x64.ActiveCfg = Release|x64
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Release|x64.Build.0 = Release|x64
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Release|x86.ActiveCfg = Release|Win32
|
||||||
|
{98153E55-A798-418B-9641-E1FEC5FC54C1}.Release|x86.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
138
Dengine.vcxproj
Normal file
138
Dengine.vcxproj
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<ProjectGuid>{98153E55-A798-418B-9641-E1FEC5FC54C1}</ProjectGuid>
|
||||||
|
<RootNamespace>Dengine</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v140</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>MultiByte</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<OutDir>.\bin\</OutDir>
|
||||||
|
<IntDir>.\bin\</IntDir>
|
||||||
|
<IncludePath>extern\glm-0.9.7.5\include;extern\stb-master\include;src\include;extern\glew-1.13.0\include;extern\glfw-3.1.2.bin.WIN32\include;$(IncludePath)</IncludePath>
|
||||||
|
<LibraryPath>extern\glew-1.13.0\lib\Release\Win32;extern\glfw-3.1.2.bin.WIN32\lib-vc2015;$(LibraryPath)</LibraryPath>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<AdditionalDependencies>opengl32.lib;glfw3.lib;glew32s.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<IgnoreSpecificDefaultLibraries>libc.lib;libcmt.lib;libcd.lib;libcmtd.lib;msvcrtd.lib;%(IgnoreSpecificDefaultLibraries)</IgnoreSpecificDefaultLibraries>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>MaxSpeed</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="src\dengine.cpp" />
|
||||||
|
<ClCompile Include="src\Shader.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="data\shaders\default.frag.glsl" />
|
||||||
|
<None Include="data\shaders\default.vert.glsl" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="src\include\Dengine\Common.h" />
|
||||||
|
<ClInclude Include="src\include\Dengine\OpenGL.h" />
|
||||||
|
<ClInclude Include="src\include\Dengine\Shader.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
40
Dengine.vcxproj.filters
Normal file
40
Dengine.vcxproj.filters
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="src\dengine.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="src\Shader.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="data\shaders\default.vert.glsl" />
|
||||||
|
<None Include="data\shaders\default.frag.glsl" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="src\include\Dengine\Common.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="src\include\Dengine\Shader.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="src\include\Dengine\OpenGL.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
12
data/shaders/default.frag.glsl
Normal file
12
data/shaders/default.frag.glsl
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#version 330 core
|
||||||
|
in vec3 OurColor;
|
||||||
|
in vec2 TexCoord;
|
||||||
|
|
||||||
|
out vec4 color;
|
||||||
|
|
||||||
|
uniform sampler2D ourTexture1;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
color = texture(ourTexture1, TexCoord);
|
||||||
|
}
|
17
data/shaders/default.vert.glsl
Normal file
17
data/shaders/default.vert.glsl
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
#version 330 core
|
||||||
|
|
||||||
|
layout (location = 0) in vec3 position;
|
||||||
|
layout (location = 1) in vec3 color;
|
||||||
|
layout (location = 2) in vec2 texCoord;
|
||||||
|
|
||||||
|
out vec3 OurColor;
|
||||||
|
out vec2 TexCoord;
|
||||||
|
|
||||||
|
uniform mat4 transform;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
gl_Position = transform * vec4(position, 1.0f);
|
||||||
|
OurColor = color;
|
||||||
|
TexCoord = texCoord;
|
||||||
|
}
|
73
extern/glew-1.13.0/LICENSE.txt
vendored
Normal file
73
extern/glew-1.13.0/LICENSE.txt
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
The OpenGL Extension Wrangler Library
|
||||||
|
Copyright (C) 2002-2007, Milan Ikits <milan ikits[]ieee org>
|
||||||
|
Copyright (C) 2002-2007, Marcelo E. Magallon <mmagallo[]debian org>
|
||||||
|
Copyright (C) 2002, Lev Povalahev
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
this list of conditions and the following disclaimer in the documentation
|
||||||
|
and/or other materials provided with the distribution.
|
||||||
|
* The name of the author may be used to endorse or promote products
|
||||||
|
derived from this software without specific prior written permission.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||||
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||||
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||||
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||||
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||||
|
THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
|
Mesa 3-D graphics library
|
||||||
|
Version: 7.0
|
||||||
|
|
||||||
|
Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
to deal in the Software without restriction, including without limitation
|
||||||
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||||
|
and/or sell copies of the Software, and to permit persons to whom the
|
||||||
|
Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included
|
||||||
|
in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||||
|
BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
Copyright (c) 2007 The Khronos Group Inc.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
copy of this software and/or associated documentation files (the
|
||||||
|
"Materials"), to deal in the Materials without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Materials, and to
|
||||||
|
permit persons to whom the Materials are furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included
|
||||||
|
in all copies or substantial portions of the Materials.
|
||||||
|
|
||||||
|
THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
|
34
extern/glew-1.13.0/README.txt
vendored
Normal file
34
extern/glew-1.13.0/README.txt
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
GLEW - The OpenGL Extension Wrangler Library
|
||||||
|
|
||||||
|
http://glew.sourceforge.net/
|
||||||
|
https://github.com/nigels-com/glew
|
||||||
|
|
||||||
|
See doc/index.html for more information.
|
||||||
|
|
||||||
|
If you downloaded the tarball from the GLEW website, you just need to:
|
||||||
|
|
||||||
|
Unix:
|
||||||
|
|
||||||
|
make
|
||||||
|
|
||||||
|
sudo -s
|
||||||
|
|
||||||
|
make install
|
||||||
|
|
||||||
|
make clean
|
||||||
|
|
||||||
|
Windows:
|
||||||
|
|
||||||
|
use the project file in build/vc12/
|
||||||
|
|
||||||
|
If you wish to build GLEW from scratch (update the extension data from
|
||||||
|
the net or add your own extension information), you need a Unix
|
||||||
|
environment (including wget, perl, and GNU make). The extension data
|
||||||
|
is regenerated from the top level source directory with:
|
||||||
|
|
||||||
|
make extensions
|
||||||
|
|
||||||
|
An alternative to generating the GLEW sources from scratch is to
|
||||||
|
download a pre-generated (unsupported) snapshot:
|
||||||
|
|
||||||
|
https://sourceforge.net/projects/glew/files/glew/snapshots/
|
12
extern/glew-1.13.0/TODO.txt
vendored
Normal file
12
extern/glew-1.13.0/TODO.txt
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
Major:
|
||||||
|
- add support for windows mini-client drivers
|
||||||
|
- add windows installer (msi)
|
||||||
|
- separate build of static and shared object files (for mingw and
|
||||||
|
cygwin)
|
||||||
|
- start designing GLEW 2.0
|
||||||
|
|
||||||
|
Minor:
|
||||||
|
- make auto scripts work with text mode cygwin mounts
|
||||||
|
- add support for all SUN, MTX, and OML extensions
|
||||||
|
- make auto/Makefile more robust against auto/core/*~ mistakes
|
||||||
|
- web poll on separating glew, glxew and wglew
|
19753
extern/glew-1.13.0/include/GL/glew.h
vendored
Normal file
19753
extern/glew-1.13.0/include/GL/glew.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1772
extern/glew-1.13.0/include/GL/glxew.h
vendored
Normal file
1772
extern/glew-1.13.0/include/GL/glxew.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1453
extern/glew-1.13.0/include/GL/wglew.h
vendored
Normal file
1453
extern/glew-1.13.0/include/GL/wglew.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
extern/glew-1.13.0/lib/Release MX/Win32/glew32mx.lib
vendored
Normal file
BIN
extern/glew-1.13.0/lib/Release MX/Win32/glew32mx.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glew-1.13.0/lib/Release MX/Win32/glew32mxs.lib
vendored
Normal file
BIN
extern/glew-1.13.0/lib/Release MX/Win32/glew32mxs.lib
vendored
Normal file
Binary file not shown.
22
extern/glfw-3.1.2.bin.WIN32/COPYING.txt
vendored
Normal file
22
extern/glfw-3.1.2.bin.WIN32/COPYING.txt
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
Copyright (c) 2002-2006 Marcus Geelnard
|
||||||
|
Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
||||||
|
|
||||||
|
This software is provided 'as-is', without any express or implied
|
||||||
|
warranty. In no event will the authors be held liable for any damages
|
||||||
|
arising from the use of this software.
|
||||||
|
|
||||||
|
Permission is granted to anyone to use this software for any purpose,
|
||||||
|
including commercial applications, and to alter it and redistribute it
|
||||||
|
freely, subject to the following restrictions:
|
||||||
|
|
||||||
|
1. The origin of this software must not be misrepresented; you must not
|
||||||
|
claim that you wrote the original software. If you use this software
|
||||||
|
in a product, an acknowledgment in the product documentation would
|
||||||
|
be appreciated but is not required.
|
||||||
|
|
||||||
|
2. Altered source versions must be plainly marked as such, and must not
|
||||||
|
be misrepresented as being the original software.
|
||||||
|
|
||||||
|
3. This notice may not be removed or altered from any source
|
||||||
|
distribution.
|
||||||
|
|
3358
extern/glfw-3.1.2.bin.WIN32/include/GLFW/glfw3.h
vendored
Normal file
3358
extern/glfw-3.1.2.bin.WIN32/include/GLFW/glfw3.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
356
extern/glfw-3.1.2.bin.WIN32/include/GLFW/glfw3native.h
vendored
Normal file
356
extern/glfw-3.1.2.bin.WIN32/include/GLFW/glfw3native.h
vendored
Normal file
@ -0,0 +1,356 @@
|
|||||||
|
/*************************************************************************
|
||||||
|
* GLFW 3.1 - www.glfw.org
|
||||||
|
* A library for OpenGL, window and input
|
||||||
|
*------------------------------------------------------------------------
|
||||||
|
* Copyright (c) 2002-2006 Marcus Geelnard
|
||||||
|
* Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
|
||||||
|
*
|
||||||
|
* This software is provided 'as-is', without any express or implied
|
||||||
|
* warranty. In no event will the authors be held liable for any damages
|
||||||
|
* arising from the use of this software.
|
||||||
|
*
|
||||||
|
* Permission is granted to anyone to use this software for any purpose,
|
||||||
|
* including commercial applications, and to alter it and redistribute it
|
||||||
|
* freely, subject to the following restrictions:
|
||||||
|
*
|
||||||
|
* 1. The origin of this software must not be misrepresented; you must not
|
||||||
|
* claim that you wrote the original software. If you use this software
|
||||||
|
* in a product, an acknowledgment in the product documentation would
|
||||||
|
* be appreciated but is not required.
|
||||||
|
*
|
||||||
|
* 2. Altered source versions must be plainly marked as such, and must not
|
||||||
|
* be misrepresented as being the original software.
|
||||||
|
*
|
||||||
|
* 3. This notice may not be removed or altered from any source
|
||||||
|
* distribution.
|
||||||
|
*
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#ifndef _glfw3_native_h_
|
||||||
|
#define _glfw3_native_h_
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* Doxygen documentation
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
/*! @defgroup native Native access
|
||||||
|
*
|
||||||
|
* **By using the native access functions you assert that you know what you're
|
||||||
|
* doing and how to fix problems caused by using them. If you don't, you
|
||||||
|
* shouldn't be using them.**
|
||||||
|
*
|
||||||
|
* Before the inclusion of @ref glfw3native.h, you must define exactly one
|
||||||
|
* window system API macro and exactly one context creation API macro. Failure
|
||||||
|
* to do this will cause a compile-time error.
|
||||||
|
*
|
||||||
|
* The available window API macros are:
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_WIN32`
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_COCOA`
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_X11`
|
||||||
|
*
|
||||||
|
* The available context API macros are:
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_WGL`
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_NSGL`
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_GLX`
|
||||||
|
* * `GLFW_EXPOSE_NATIVE_EGL`
|
||||||
|
*
|
||||||
|
* These macros select which of the native access functions that are declared
|
||||||
|
* and which platform-specific headers to include. It is then up your (by
|
||||||
|
* definition platform-specific) code to handle which of these should be
|
||||||
|
* defined.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* System headers and types
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_WIN32)
|
||||||
|
// This is a workaround for the fact that glfw3.h needs to export APIENTRY (for
|
||||||
|
// example to allow applications to correctly declare a GL_ARB_debug_output
|
||||||
|
// callback) but windows.h assumes no one will define APIENTRY before it does
|
||||||
|
#undef APIENTRY
|
||||||
|
#include <windows.h>
|
||||||
|
#elif defined(GLFW_EXPOSE_NATIVE_COCOA)
|
||||||
|
#include <ApplicationServices/ApplicationServices.h>
|
||||||
|
#if defined(__OBJC__)
|
||||||
|
#import <Cocoa/Cocoa.h>
|
||||||
|
#else
|
||||||
|
typedef void* id;
|
||||||
|
#endif
|
||||||
|
#elif defined(GLFW_EXPOSE_NATIVE_X11)
|
||||||
|
#include <X11/Xlib.h>
|
||||||
|
#include <X11/extensions/Xrandr.h>
|
||||||
|
#else
|
||||||
|
#error "No window API selected"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_WGL)
|
||||||
|
/* WGL is declared by windows.h */
|
||||||
|
#elif defined(GLFW_EXPOSE_NATIVE_NSGL)
|
||||||
|
/* NSGL is declared by Cocoa.h */
|
||||||
|
#elif defined(GLFW_EXPOSE_NATIVE_GLX)
|
||||||
|
#include <GL/glx.h>
|
||||||
|
#elif defined(GLFW_EXPOSE_NATIVE_EGL)
|
||||||
|
#include <EGL/egl.h>
|
||||||
|
#else
|
||||||
|
#error "No context API selected"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/*************************************************************************
|
||||||
|
* Functions
|
||||||
|
*************************************************************************/
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_WIN32)
|
||||||
|
/*! @brief Returns the adapter device name of the specified monitor.
|
||||||
|
*
|
||||||
|
* @return The UTF-8 encoded adapter device name (for example `\\.\DISPLAY1`)
|
||||||
|
* of the specified monitor, or `NULL` if an [error](@ref error_handling)
|
||||||
|
* occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.1.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI const char* glfwGetWin32Adapter(GLFWmonitor* monitor);
|
||||||
|
|
||||||
|
/*! @brief Returns the display device name of the specified monitor.
|
||||||
|
*
|
||||||
|
* @return The UTF-8 encoded display device name (for example
|
||||||
|
* `\\.\DISPLAY1\Monitor0`) of the specified monitor, or `NULL` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.1.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI const char* glfwGetWin32Monitor(GLFWmonitor* monitor);
|
||||||
|
|
||||||
|
/*! @brief Returns the `HWND` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `HWND` of the specified window, or `NULL` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI HWND glfwGetWin32Window(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_WGL)
|
||||||
|
/*! @brief Returns the `HGLRC` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `HGLRC` of the specified window, or `NULL` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI HGLRC glfwGetWGLContext(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_COCOA)
|
||||||
|
/*! @brief Returns the `CGDirectDisplayID` of the specified monitor.
|
||||||
|
*
|
||||||
|
* @return The `CGDirectDisplayID` of the specified monitor, or
|
||||||
|
* `kCGNullDirectDisplay` if an [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.1.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI CGDirectDisplayID glfwGetCocoaMonitor(GLFWmonitor* monitor);
|
||||||
|
|
||||||
|
/*! @brief Returns the `NSWindow` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `NSWindow` of the specified window, or `nil` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI id glfwGetCocoaWindow(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_NSGL)
|
||||||
|
/*! @brief Returns the `NSOpenGLContext` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `NSOpenGLContext` of the specified window, or `nil` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI id glfwGetNSGLContext(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_X11)
|
||||||
|
/*! @brief Returns the `Display` used by GLFW.
|
||||||
|
*
|
||||||
|
* @return The `Display` used by GLFW, or `NULL` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI Display* glfwGetX11Display(void);
|
||||||
|
|
||||||
|
/*! @brief Returns the `RRCrtc` of the specified monitor.
|
||||||
|
*
|
||||||
|
* @return The `RRCrtc` of the specified monitor, or `None` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.1.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI RRCrtc glfwGetX11Adapter(GLFWmonitor* monitor);
|
||||||
|
|
||||||
|
/*! @brief Returns the `RROutput` of the specified monitor.
|
||||||
|
*
|
||||||
|
* @return The `RROutput` of the specified monitor, or `None` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.1.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI RROutput glfwGetX11Monitor(GLFWmonitor* monitor);
|
||||||
|
|
||||||
|
/*! @brief Returns the `Window` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `Window` of the specified window, or `None` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI Window glfwGetX11Window(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_GLX)
|
||||||
|
/*! @brief Returns the `GLXContext` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `GLXContext` of the specified window, or `NULL` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI GLXContext glfwGetGLXContext(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(GLFW_EXPOSE_NATIVE_EGL)
|
||||||
|
/*! @brief Returns the `EGLDisplay` used by GLFW.
|
||||||
|
*
|
||||||
|
* @return The `EGLDisplay` used by GLFW, or `EGL_NO_DISPLAY` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI EGLDisplay glfwGetEGLDisplay(void);
|
||||||
|
|
||||||
|
/*! @brief Returns the `EGLContext` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `EGLContext` of the specified window, or `EGL_NO_CONTEXT` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI EGLContext glfwGetEGLContext(GLFWwindow* window);
|
||||||
|
|
||||||
|
/*! @brief Returns the `EGLSurface` of the specified window.
|
||||||
|
*
|
||||||
|
* @return The `EGLSurface` of the specified window, or `EGL_NO_SURFACE` if an
|
||||||
|
* [error](@ref error_handling) occurred.
|
||||||
|
*
|
||||||
|
* @par Thread Safety
|
||||||
|
* This function may be called from any thread. Access is not synchronized.
|
||||||
|
*
|
||||||
|
* @par History
|
||||||
|
* Added in GLFW 3.0.
|
||||||
|
*
|
||||||
|
* @ingroup native
|
||||||
|
*/
|
||||||
|
GLFWAPI EGLSurface glfwGetEGLSurface(GLFWwindow* window);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _glfw3_native_h_ */
|
||||||
|
|
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw-w64/glfw3.dll
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw-w64/glfw3.dll
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw-w64/glfw3dll.a
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw-w64/glfw3dll.a
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw-w64/libglfw3.a
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw-w64/libglfw3.a
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw/glfw3.dll
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw/glfw3.dll
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw/glfw3dll.a
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw/glfw3dll.a
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw/libglfw3.a
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-mingw/libglfw3.a
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2010/glfw3.dll
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2010/glfw3.dll
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2010/glfw3.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2010/glfw3.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2010/glfw3dll.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2010/glfw3dll.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2012/glfw3.dll
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2012/glfw3.dll
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2012/glfw3.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2012/glfw3.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2012/glfw3dll.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2012/glfw3dll.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2013/glfw3.dll
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2013/glfw3.dll
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2013/glfw3.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2013/glfw3.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2013/glfw3dll.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2013/glfw3dll.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2015/glfw3.dll
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2015/glfw3.dll
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2015/glfw3.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2015/glfw3.lib
vendored
Normal file
Binary file not shown.
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2015/glfw3dll.lib
vendored
Normal file
BIN
extern/glfw-3.1.2.bin.WIN32/lib-vc2015/glfw3dll.lib
vendored
Normal file
Binary file not shown.
44
extern/glm-0.9.7.5/include/glm/CMakeLists.txt
vendored
Normal file
44
extern/glm-0.9.7.5/include/glm/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
set(NAME glm_dummy)
|
||||||
|
|
||||||
|
file(GLOB ROOT_SOURCE *.cpp)
|
||||||
|
file(GLOB ROOT_INLINE *.inl)
|
||||||
|
file(GLOB ROOT_HEADER *.hpp)
|
||||||
|
file(GLOB ROOT_TEXT ../*.txt)
|
||||||
|
file(GLOB ROOT_MD ../*.md)
|
||||||
|
file(GLOB ROOT_NAT ../util/glm.natvis)
|
||||||
|
|
||||||
|
file(GLOB_RECURSE CORE_SOURCE ./detail/*.cpp)
|
||||||
|
file(GLOB_RECURSE CORE_INLINE ./detail/*.inl)
|
||||||
|
file(GLOB_RECURSE CORE_HEADER ./detail/*.hpp)
|
||||||
|
|
||||||
|
file(GLOB_RECURSE GTC_SOURCE ./gtc/*.cpp)
|
||||||
|
file(GLOB_RECURSE GTC_INLINE ./gtc/*.inl)
|
||||||
|
file(GLOB_RECURSE GTC_HEADER ./gtc/*.hpp)
|
||||||
|
|
||||||
|
file(GLOB_RECURSE GTX_SOURCE ./gtx/*.cpp)
|
||||||
|
file(GLOB_RECURSE GTX_INLINE ./gtx/*.inl)
|
||||||
|
file(GLOB_RECURSE GTX_HEADER ./gtx/*.hpp)
|
||||||
|
|
||||||
|
source_group("Text Files" FILES ${ROOT_TEXT} ${ROOT_MD})
|
||||||
|
source_group("Core Files" FILES ${CORE_SOURCE})
|
||||||
|
source_group("Core Files" FILES ${CORE_INLINE})
|
||||||
|
source_group("Core Files" FILES ${CORE_HEADER})
|
||||||
|
source_group("GTC Files" FILES ${GTC_SOURCE})
|
||||||
|
source_group("GTC Files" FILES ${GTC_INLINE})
|
||||||
|
source_group("GTC Files" FILES ${GTC_HEADER})
|
||||||
|
source_group("GTX Files" FILES ${GTX_SOURCE})
|
||||||
|
source_group("GTX Files" FILES ${GTX_INLINE})
|
||||||
|
source_group("GTX Files" FILES ${GTX_HEADER})
|
||||||
|
|
||||||
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||||||
|
|
||||||
|
if(GLM_TEST_ENABLE)
|
||||||
|
add_executable(${NAME} ${ROOT_TEXT} ${ROOT_MD} ${ROOT_NAT}
|
||||||
|
${ROOT_SOURCE} ${ROOT_INLINE} ${ROOT_HEADER}
|
||||||
|
${CORE_SOURCE} ${CORE_INLINE} ${CORE_HEADER}
|
||||||
|
${GTC_SOURCE} ${GTC_INLINE} ${GTC_HEADER}
|
||||||
|
${GTX_SOURCE} ${GTX_INLINE} ${GTX_HEADER})
|
||||||
|
endif(GLM_TEST_ENABLE)
|
||||||
|
|
||||||
|
#add_library(glm STATIC glm.cpp)
|
||||||
|
#add_library(glm_shared SHARED glm.cpp)
|
35
extern/glm-0.9.7.5/include/glm/common.hpp
vendored
Normal file
35
extern/glm-0.9.7.5/include/glm/common.hpp
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/common.hpp
|
||||||
|
/// @date 2013-12-24 / 2013-12-24
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "detail/func_common.hpp"
|
428
extern/glm-0.9.7.5/include/glm/detail/_features.hpp
vendored
Normal file
428
extern/glm-0.9.7.5/include/glm/detail/_features.hpp
vendored
Normal file
@ -0,0 +1,428 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/_features.hpp
|
||||||
|
/// @date 2013-02-20 / 2013-02-20
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
// #define GLM_CXX98_EXCEPTIONS
|
||||||
|
// #define GLM_CXX98_RTTI
|
||||||
|
|
||||||
|
// #define GLM_CXX11_RVALUE_REFERENCES
|
||||||
|
// Rvalue references - GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n2118.html
|
||||||
|
|
||||||
|
// GLM_CXX11_TRAILING_RETURN
|
||||||
|
// Rvalue references for *this - GCC not supported
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2439.htm
|
||||||
|
|
||||||
|
// GLM_CXX11_NONSTATIC_MEMBER_INIT
|
||||||
|
// Initialization of class objects by rvalues - GCC any
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1610.html
|
||||||
|
|
||||||
|
// GLM_CXX11_NONSTATIC_MEMBER_INIT
|
||||||
|
// Non-static data member initializers - GCC 4.7
|
||||||
|
// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2008/n2756.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_VARIADIC_TEMPLATE
|
||||||
|
// Variadic templates - GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2242.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Extending variadic template template parameters - GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2555.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_GENERALIZED_INITIALIZERS
|
||||||
|
// Initializer lists - GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2672.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_STATIC_ASSERT
|
||||||
|
// Static assertions - GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1720.html
|
||||||
|
|
||||||
|
// #define GLM_CXX11_AUTO_TYPE
|
||||||
|
// auto-typed variables - GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1984.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_AUTO_TYPE
|
||||||
|
// Multi-declarator auto - GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1737.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_AUTO_TYPE
|
||||||
|
// Removal of auto as a storage-class specifier - GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2546.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_AUTO_TYPE
|
||||||
|
// New function declarator syntax - GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2541.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_LAMBDAS
|
||||||
|
// New wording for C++0x lambdas - GCC 4.5
|
||||||
|
// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2927.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_DECLTYPE
|
||||||
|
// Declared type of an expression - GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2343.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Right angle brackets - GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1757.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Default template arguments for function templates DR226 GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#226
|
||||||
|
|
||||||
|
//
|
||||||
|
// Solving the SFINAE problem for expressions DR339 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html
|
||||||
|
|
||||||
|
// #define GLM_CXX11_ALIAS_TEMPLATE
|
||||||
|
// Template aliases N2258 GCC 4.7
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2258.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Extern templates N1987 Yes
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1987.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_NULLPTR
|
||||||
|
// Null pointer constant N2431 GCC 4.6
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2431.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_STRONG_ENUMS
|
||||||
|
// Strongly-typed enums N2347 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2347.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Forward declarations for enums N2764 GCC 4.6
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2764.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Generalized attributes N2761 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2761.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Generalized constant expressions N2235 GCC 4.6
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2235.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Alignment support N2341 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2341.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_DELEGATING_CONSTRUCTORS
|
||||||
|
// Delegating constructors N1986 GCC 4.7
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1986.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Inheriting constructors N2540 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2540.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_EXPLICIT_CONVERSIONS
|
||||||
|
// Explicit conversion operators N2437 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2437.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// New character types N2249 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2249.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Unicode string literals N2442 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2442.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Raw string literals N2442 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2442.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Universal character name literals N2170 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2170.html
|
||||||
|
|
||||||
|
// #define GLM_CXX11_USER_LITERALS
|
||||||
|
// User-defined literals N2765 GCC 4.7
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2765.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Standard Layout Types N2342 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2342.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_DEFAULTED_FUNCTIONS
|
||||||
|
// #define GLM_CXX11_DELETED_FUNCTIONS
|
||||||
|
// Defaulted and deleted functions N2346 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2346.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Extended friend declarations N1791 GCC 4.7
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1791.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Extending sizeof N2253 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2253.html
|
||||||
|
|
||||||
|
// #define GLM_CXX11_INLINE_NAMESPACES
|
||||||
|
// Inline namespaces N2535 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2535.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_UNRESTRICTED_UNIONS
|
||||||
|
// Unrestricted unions N2544 GCC 4.6
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2544.pdf
|
||||||
|
|
||||||
|
// #define GLM_CXX11_LOCAL_TYPE_TEMPLATE_ARGS
|
||||||
|
// Local and unnamed types as template arguments N2657 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2657.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_RANGE_FOR
|
||||||
|
// Range-based for N2930 GCC 4.6
|
||||||
|
// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2930.html
|
||||||
|
|
||||||
|
// #define GLM_CXX11_OVERRIDE_CONTROL
|
||||||
|
// Explicit virtual overrides N2928 N3206 N3272 GCC 4.7
|
||||||
|
// http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2928.htm
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3206.htm
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3272.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Minimal support for garbage collection and reachability-based leak detection N2670 No
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2670.htm
|
||||||
|
|
||||||
|
// #define GLM_CXX11_NOEXCEPT
|
||||||
|
// Allowing move constructors to throw [noexcept] N3050 GCC 4.6 (core language only)
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3050.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Defining move special member functions N3053 GCC 4.6
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3053.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Sequence points N2239 Yes
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2239.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Atomic operations N2427 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2239.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Strong Compare and Exchange N2748 GCC 4.5
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2427.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Bidirectional Fences N2752 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2752.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Memory model N2429 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2429.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Data-dependency ordering: atomics and memory model N2664 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2664.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Propagating exceptions N2179 GCC 4.4
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2179.html
|
||||||
|
|
||||||
|
//
|
||||||
|
// Abandoning a process and at_quick_exit N2440 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2440.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Allow atomics use in signal handlers N2547 Yes
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2547.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Thread-local storage N2659 GCC 4.8
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2659.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// Dynamic initialization and destruction with concurrency N2660 GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2660.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// __func__ predefined identifier N2340 GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2340.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// C99 preprocessor N1653 GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1653.htm
|
||||||
|
|
||||||
|
//
|
||||||
|
// long long N1811 GCC 4.3
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1811.pdf
|
||||||
|
|
||||||
|
//
|
||||||
|
// Extended integral types N1988 Yes
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1988.pdf
|
||||||
|
|
||||||
|
#if(GLM_COMPILER & GLM_COMPILER_GCC)
|
||||||
|
|
||||||
|
# if(GLM_COMPILER >= GLM_COMPILER_GCC43)
|
||||||
|
# define GLM_CXX11_STATIC_ASSERT
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#elif(GLM_COMPILER & (GLM_COMPILER_APPLE_CLANG | GLM_COMPILER_LLVM))
|
||||||
|
# if(__has_feature(cxx_exceptions))
|
||||||
|
# define GLM_CXX98_EXCEPTIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_rtti))
|
||||||
|
# define GLM_CXX98_RTTI
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_access_control_sfinae))
|
||||||
|
# define GLM_CXX11_ACCESS_CONTROL_SFINAE
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_alias_templates))
|
||||||
|
# define GLM_CXX11_ALIAS_TEMPLATE
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_alignas))
|
||||||
|
# define GLM_CXX11_ALIGNAS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_attributes))
|
||||||
|
# define GLM_CXX11_ATTRIBUTES
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_constexpr))
|
||||||
|
# define GLM_CXX11_CONSTEXPR
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_decltype))
|
||||||
|
# define GLM_CXX11_DECLTYPE
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_default_function_template_args))
|
||||||
|
# define GLM_CXX11_DEFAULT_FUNCTION_TEMPLATE_ARGS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_defaulted_functions))
|
||||||
|
# define GLM_CXX11_DEFAULTED_FUNCTIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_delegating_constructors))
|
||||||
|
# define GLM_CXX11_DELEGATING_CONSTRUCTORS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_deleted_functions))
|
||||||
|
# define GLM_CXX11_DELETED_FUNCTIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_explicit_conversions))
|
||||||
|
# define GLM_CXX11_EXPLICIT_CONVERSIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_generalized_initializers))
|
||||||
|
# define GLM_CXX11_GENERALIZED_INITIALIZERS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_implicit_moves))
|
||||||
|
# define GLM_CXX11_IMPLICIT_MOVES
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_inheriting_constructors))
|
||||||
|
# define GLM_CXX11_INHERITING_CONSTRUCTORS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_inline_namespaces))
|
||||||
|
# define GLM_CXX11_INLINE_NAMESPACES
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_lambdas))
|
||||||
|
# define GLM_CXX11_LAMBDAS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_local_type_template_args))
|
||||||
|
# define GLM_CXX11_LOCAL_TYPE_TEMPLATE_ARGS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_noexcept))
|
||||||
|
# define GLM_CXX11_NOEXCEPT
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_nonstatic_member_init))
|
||||||
|
# define GLM_CXX11_NONSTATIC_MEMBER_INIT
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_nullptr))
|
||||||
|
# define GLM_CXX11_NULLPTR
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_override_control))
|
||||||
|
# define GLM_CXX11_OVERRIDE_CONTROL
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_reference_qualified_functions))
|
||||||
|
# define GLM_CXX11_REFERENCE_QUALIFIED_FUNCTIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_range_for))
|
||||||
|
# define GLM_CXX11_RANGE_FOR
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_raw_string_literals))
|
||||||
|
# define GLM_CXX11_RAW_STRING_LITERALS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_rvalue_references))
|
||||||
|
# define GLM_CXX11_RVALUE_REFERENCES
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_static_assert))
|
||||||
|
# define GLM_CXX11_STATIC_ASSERT
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_auto_type))
|
||||||
|
# define GLM_CXX11_AUTO_TYPE
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_strong_enums))
|
||||||
|
# define GLM_CXX11_STRONG_ENUMS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_trailing_return))
|
||||||
|
# define GLM_CXX11_TRAILING_RETURN
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_unicode_literals))
|
||||||
|
# define GLM_CXX11_UNICODE_LITERALS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_unrestricted_unions))
|
||||||
|
# define GLM_CXX11_UNRESTRICTED_UNIONS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_user_literals))
|
||||||
|
# define GLM_CXX11_USER_LITERALS
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if(__has_feature(cxx_variadic_templates))
|
||||||
|
# define GLM_CXX11_VARIADIC_TEMPLATES
|
||||||
|
# endif
|
||||||
|
|
||||||
|
#endif//(GLM_COMPILER & (GLM_COMPILER_APPLE_CLANG | GLM_COMPILER_LLVM))
|
59
extern/glm-0.9.7.5/include/glm/detail/_fixes.hpp
vendored
Normal file
59
extern/glm-0.9.7.5/include/glm/detail/_fixes.hpp
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/_fixes.hpp
|
||||||
|
/// @date 2011-02-21 / 2011-11-22
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
|
//! Workaround for compatibility with other libraries
|
||||||
|
#ifdef max
|
||||||
|
#undef max
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//! Workaround for compatibility with other libraries
|
||||||
|
#ifdef min
|
||||||
|
#undef min
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//! Workaround for Android
|
||||||
|
#ifdef isnan
|
||||||
|
#undef isnan
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//! Workaround for Android
|
||||||
|
#ifdef isinf
|
||||||
|
#undef isinf
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//! Workaround for Chrone Native Client
|
||||||
|
#ifdef log2
|
||||||
|
#undef log2
|
||||||
|
#endif
|
||||||
|
|
136
extern/glm-0.9.7.5/include/glm/detail/_noise.hpp
vendored
Normal file
136
extern/glm-0.9.7.5/include/glm/detail/_noise.hpp
vendored
Normal file
@ -0,0 +1,136 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/_noise.hpp
|
||||||
|
/// @date 2013-12-24 / 2013-12-24
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../vec2.hpp"
|
||||||
|
#include "../vec3.hpp"
|
||||||
|
#include "../vec4.hpp"
|
||||||
|
#include "../common.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename T>
|
||||||
|
GLM_FUNC_QUALIFIER T mod289(T const & x)
|
||||||
|
{
|
||||||
|
return x - floor(x * static_cast<T>(1.0) / static_cast<T>(289.0)) * static_cast<T>(289.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
GLM_FUNC_QUALIFIER T permute(T const & x)
|
||||||
|
{
|
||||||
|
return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec2<T, P> permute(tvec2<T, P> const & x)
|
||||||
|
{
|
||||||
|
return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> permute(tvec3<T, P> const & x)
|
||||||
|
{
|
||||||
|
return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec4<T, P> permute(tvec4<T, P> const & x)
|
||||||
|
{
|
||||||
|
return mod289(((x * static_cast<T>(34)) + static_cast<T>(1)) * x);
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
template <typename T, precision P, template<typename> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> permute(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return mod289(((x * T(34)) + T(1)) * x);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
template <typename T>
|
||||||
|
GLM_FUNC_QUALIFIER T taylorInvSqrt(T const & r)
|
||||||
|
{
|
||||||
|
return T(1.79284291400159) - T(0.85373472095314) * r;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec2<T, P> taylorInvSqrt(tvec2<T, P> const & r)
|
||||||
|
{
|
||||||
|
return T(1.79284291400159) - T(0.85373472095314) * r;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> taylorInvSqrt(tvec3<T, P> const & r)
|
||||||
|
{
|
||||||
|
return T(1.79284291400159) - T(0.85373472095314) * r;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec4<T, P> taylorInvSqrt(tvec4<T, P> const & r)
|
||||||
|
{
|
||||||
|
return T(1.79284291400159) - T(0.85373472095314) * r;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
template <typename T, precision P, template<typename> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> taylorInvSqrt(vecType<T, P> const & r)
|
||||||
|
{
|
||||||
|
return T(1.79284291400159) - T(0.85373472095314) * r;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec2<T, P> fade(tvec2<T, P> const & t)
|
||||||
|
{
|
||||||
|
return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> fade(tvec3<T, P> const & t)
|
||||||
|
{
|
||||||
|
return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec4<T, P> fade(tvec4<T, P> const & t)
|
||||||
|
{
|
||||||
|
return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
template <typename T, precision P, template <typename> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> fade(vecType<T, P> const & t)
|
||||||
|
{
|
||||||
|
return (t * t * t) * (t * (t * T(6) - T(15)) + T(10));
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
833
extern/glm-0.9.7.5/include/glm/detail/_swizzle.hpp
vendored
Normal file
833
extern/glm-0.9.7.5/include/glm/detail/_swizzle.hpp
vendored
Normal file
@ -0,0 +1,833 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/_swizzle.hpp
|
||||||
|
/// @date 2006-04-20 / 2011-02-16
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
// Internal class for implementing swizzle operators
|
||||||
|
template <typename T, int N>
|
||||||
|
struct _swizzle_base0
|
||||||
|
{
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
GLM_FUNC_QUALIFIER value_type& elem (size_t i) { return (reinterpret_cast<value_type*>(_buffer))[i]; }
|
||||||
|
GLM_FUNC_QUALIFIER const value_type& elem (size_t i) const { return (reinterpret_cast<const value_type*>(_buffer))[i]; }
|
||||||
|
|
||||||
|
// Use an opaque buffer to *ensure* the compiler doesn't call a constructor.
|
||||||
|
// The size 1 buffer is assumed to aligned to the actual members so that the
|
||||||
|
// elem()
|
||||||
|
char _buffer[1];
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, typename V, int E0, int E1, int E2, int E3, int N>
|
||||||
|
struct _swizzle_base1 : public _swizzle_base0<T, N>
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, typename V, int E0, int E1>
|
||||||
|
struct _swizzle_base1<T, P, V,E0,E1,-1,-2,2> : public _swizzle_base0<T, 2>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER V operator ()() const { return V(this->elem(E0), this->elem(E1)); }
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, typename V, int E0, int E1, int E2>
|
||||||
|
struct _swizzle_base1<T, P, V,E0,E1,E2,-1,3> : public _swizzle_base0<T, 3>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER V operator ()() const { return V(this->elem(E0), this->elem(E1), this->elem(E2)); }
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, typename V, int E0, int E1, int E2, int E3>
|
||||||
|
struct _swizzle_base1<T, P, V,E0,E1,E2,E3,4> : public _swizzle_base0<T, 4>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER V operator ()() const { return V(this->elem(E0), this->elem(E1), this->elem(E2), this->elem(E3)); }
|
||||||
|
};
|
||||||
|
|
||||||
|
// Internal class for implementing swizzle operators
|
||||||
|
/*
|
||||||
|
Template parameters:
|
||||||
|
|
||||||
|
ValueType = type of scalar values (e.g. float, double)
|
||||||
|
VecType = class the swizzle is applies to (e.g. tvec3<float>)
|
||||||
|
N = number of components in the vector (e.g. 3)
|
||||||
|
E0...3 = what index the n-th element of this swizzle refers to in the unswizzled vec
|
||||||
|
|
||||||
|
DUPLICATE_ELEMENTS = 1 if there is a repeated element, 0 otherwise (used to specialize swizzles
|
||||||
|
containing duplicate elements so that they cannot be used as r-values).
|
||||||
|
*/
|
||||||
|
template <typename ValueType, precision P, typename VecType, int N, int E0, int E1, int E2, int E3, int DUPLICATE_ELEMENTS>
|
||||||
|
struct _swizzle_base2 : public _swizzle_base1<ValueType, P, VecType,E0,E1,E2,E3,N>
|
||||||
|
{
|
||||||
|
typedef VecType vec_type;
|
||||||
|
typedef ValueType value_type;
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER _swizzle_base2& operator= (const ValueType& t)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < N; ++i)
|
||||||
|
(*this)[i] = t;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER _swizzle_base2& operator= (const VecType& that)
|
||||||
|
{
|
||||||
|
struct op {
|
||||||
|
GLM_FUNC_QUALIFIER void operator() (value_type& e, value_type& t) { e = t; }
|
||||||
|
};
|
||||||
|
_apply_op(that, op());
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER void operator -= (const VecType& that)
|
||||||
|
{
|
||||||
|
struct op {
|
||||||
|
GLM_FUNC_QUALIFIER void operator() (value_type& e, value_type& t) { e -= t; }
|
||||||
|
};
|
||||||
|
_apply_op(that, op());
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER void operator += (const VecType& that)
|
||||||
|
{
|
||||||
|
struct op {
|
||||||
|
GLM_FUNC_QUALIFIER void operator() (value_type& e, value_type& t) { e += t; }
|
||||||
|
};
|
||||||
|
_apply_op(that, op());
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER void operator *= (const VecType& that)
|
||||||
|
{
|
||||||
|
struct op {
|
||||||
|
GLM_FUNC_QUALIFIER void operator() (value_type& e, value_type& t) { e *= t; }
|
||||||
|
};
|
||||||
|
_apply_op(that, op());
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER void operator /= (const VecType& that)
|
||||||
|
{
|
||||||
|
struct op {
|
||||||
|
GLM_FUNC_QUALIFIER void operator() (value_type& e, value_type& t) { e /= t; }
|
||||||
|
};
|
||||||
|
_apply_op(that, op());
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER value_type& operator[] (size_t i)
|
||||||
|
{
|
||||||
|
const int offset_dst[4] = { E0, E1, E2, E3 };
|
||||||
|
return this->elem(offset_dst[i]);
|
||||||
|
}
|
||||||
|
GLM_FUNC_QUALIFIER value_type operator[] (size_t i) const
|
||||||
|
{
|
||||||
|
const int offset_dst[4] = { E0, E1, E2, E3 };
|
||||||
|
return this->elem(offset_dst[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected:
|
||||||
|
template <typename T>
|
||||||
|
GLM_FUNC_QUALIFIER void _apply_op(const VecType& that, T op)
|
||||||
|
{
|
||||||
|
// Make a copy of the data in this == &that.
|
||||||
|
// The copier should optimize out the copy in cases where the function is
|
||||||
|
// properly inlined and the copy is not necessary.
|
||||||
|
ValueType t[N];
|
||||||
|
for (int i = 0; i < N; ++i)
|
||||||
|
t[i] = that[i];
|
||||||
|
for (int i = 0; i < N; ++i)
|
||||||
|
op( (*this)[i], t[i] );
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Specialization for swizzles containing duplicate elements. These cannot be modified.
|
||||||
|
template <typename ValueType, precision P, typename VecType, int N, int E0, int E1, int E2, int E3>
|
||||||
|
struct _swizzle_base2<ValueType, P, VecType,N,E0,E1,E2,E3,1> : public _swizzle_base1<ValueType, P, VecType,E0,E1,E2,E3,N>
|
||||||
|
{
|
||||||
|
typedef VecType vec_type;
|
||||||
|
typedef ValueType value_type;
|
||||||
|
|
||||||
|
struct Stub {};
|
||||||
|
GLM_FUNC_QUALIFIER _swizzle_base2& operator= (Stub const &) { return *this; }
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER value_type operator[] (size_t i) const
|
||||||
|
{
|
||||||
|
const int offset_dst[4] = { E0, E1, E2, E3 };
|
||||||
|
return this->elem(offset_dst[i]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <int N,typename ValueType, precision P, typename VecType, int E0,int E1,int E2,int E3>
|
||||||
|
struct _swizzle : public _swizzle_base2<ValueType, P, VecType, N, E0, E1, E2, E3, (E0==E1||E0==E2||E0==E3||E1==E2||E1==E3||E2==E3)>
|
||||||
|
{
|
||||||
|
typedef _swizzle_base2<ValueType, P, VecType,N,E0,E1,E2,E3,(E0==E1||E0==E2||E0==E3||E1==E2||E1==E3||E2==E3)> base_type;
|
||||||
|
|
||||||
|
using base_type::operator=;
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER operator VecType () const { return (*this)(); }
|
||||||
|
};
|
||||||
|
|
||||||
|
//
|
||||||
|
// To prevent the C++ syntax from getting entirely overwhelming, define some alias macros
|
||||||
|
//
|
||||||
|
#define _GLM_SWIZZLE_TEMPLATE1 template <int N, typename T, precision P, typename V, int E0, int E1, int E2, int E3>
|
||||||
|
#define _GLM_SWIZZLE_TEMPLATE2 template <int N, typename T, precision P, typename V, int E0, int E1, int E2, int E3, int F0, int F1, int F2, int F3>
|
||||||
|
#define _GLM_SWIZZLE_TYPE1 _swizzle<N, T, P, V, E0, E1, E2, E3>
|
||||||
|
#define _GLM_SWIZZLE_TYPE2 _swizzle<N, T, P, V, F0, F1, F2, F3>
|
||||||
|
|
||||||
|
//
|
||||||
|
// Wrapper for a binary operator (e.g. u.yy + v.zy)
|
||||||
|
//
|
||||||
|
#define _GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(OPERAND) \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE2 \
|
||||||
|
GLM_FUNC_QUALIFIER V operator OPERAND ( const _GLM_SWIZZLE_TYPE1& a, const _GLM_SWIZZLE_TYPE2& b) \
|
||||||
|
{ \
|
||||||
|
return a() OPERAND b(); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER V operator OPERAND ( const _GLM_SWIZZLE_TYPE1& a, const V& b) \
|
||||||
|
{ \
|
||||||
|
return a() OPERAND b; \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER V operator OPERAND ( const V& a, const _GLM_SWIZZLE_TYPE1& b) \
|
||||||
|
{ \
|
||||||
|
return a OPERAND b(); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Wrapper for a operand between a swizzle and a binary (e.g. 1.0f - u.xyz)
|
||||||
|
//
|
||||||
|
#define _GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(OPERAND) \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER V operator OPERAND ( const _GLM_SWIZZLE_TYPE1& a, const T& b) \
|
||||||
|
{ \
|
||||||
|
return a() OPERAND b; \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER V operator OPERAND ( const T& a, const _GLM_SWIZZLE_TYPE1& b) \
|
||||||
|
{ \
|
||||||
|
return a OPERAND b(); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Macro for wrapping a function taking one argument (e.g. abs())
|
||||||
|
//
|
||||||
|
#define _GLM_SWIZZLE_FUNCTION_1_ARGS(RETURN_TYPE,FUNCTION) \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a()); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Macro for wrapping a function taking two vector arguments (e.g. dot()).
|
||||||
|
//
|
||||||
|
#define _GLM_SWIZZLE_FUNCTION_2_ARGS(RETURN_TYPE,FUNCTION) \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE2 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const _GLM_SWIZZLE_TYPE2& b) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a(), b()); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const _GLM_SWIZZLE_TYPE1& b) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a(), b()); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const typename V& b) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a(), b); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const V& a, const _GLM_SWIZZLE_TYPE1& b) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a, b()); \
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Macro for wrapping a function take 2 vec arguments followed by a scalar (e.g. mix()).
|
||||||
|
//
|
||||||
|
#define _GLM_SWIZZLE_FUNCTION_2_ARGS_SCALAR(RETURN_TYPE,FUNCTION) \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE2 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const _GLM_SWIZZLE_TYPE2& b, const T& c) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a(), b(), c); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const _GLM_SWIZZLE_TYPE1& b, const T& c) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a(), b(), c); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const _GLM_SWIZZLE_TYPE1& a, const typename S0::vec_type& b, const T& c)\
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a(), b, c); \
|
||||||
|
} \
|
||||||
|
_GLM_SWIZZLE_TEMPLATE1 \
|
||||||
|
GLM_FUNC_QUALIFIER typename _GLM_SWIZZLE_TYPE1::RETURN_TYPE FUNCTION(const typename V& a, const _GLM_SWIZZLE_TYPE1& b, const T& c) \
|
||||||
|
{ \
|
||||||
|
return FUNCTION(a, b(), c); \
|
||||||
|
}
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
_GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(-)
|
||||||
|
_GLM_SWIZZLE_SCALAR_BINARY_OPERATOR_IMPLEMENTATION(*)
|
||||||
|
_GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(+)
|
||||||
|
_GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(-)
|
||||||
|
_GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(*)
|
||||||
|
_GLM_SWIZZLE_VECTOR_BINARY_OPERATOR_IMPLEMENTATION(/)
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Swizzles are distinct types from the unswizzled type. The below macros will
|
||||||
|
// provide template specializations for the swizzle types for the given functions
|
||||||
|
// so that the compiler does not have any ambiguity to choosing how to handle
|
||||||
|
// the function.
|
||||||
|
//
|
||||||
|
// The alternative is to use the operator()() when calling the function in order
|
||||||
|
// to explicitly convert the swizzled type to the unswizzled type.
|
||||||
|
//
|
||||||
|
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, abs);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, acos);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, acosh);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, all);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_1_ARGS(vec_type, any);
|
||||||
|
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_2_ARGS(value_type, dot);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_2_ARGS(vec_type, cross);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_2_ARGS(vec_type, step);
|
||||||
|
//_GLM_SWIZZLE_FUNCTION_2_ARGS_SCALAR(vec_type, mix);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE2_2_MEMBERS(T, P, V, E0,E1) \
|
||||||
|
struct { detail::_swizzle<2, T, P, V<T, P>, 0,0,-1,-2> E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2, T, P, V<T, P>, 0,1,-1,-2> E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2, T, P, V<T, P>, 1,0,-1,-2> E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2, T, P, V<T, P>, 1,1,-1,-2> E1 ## E1; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE2_3_MEMBERS(T, P, V, E0,E1) \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 0,0,0,-1> E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 0,0,1,-1> E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 0,1,0,-1> E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 0,1,1,-1> E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 1,0,0,-1> E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 1,0,1,-1> E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 1,1,0,-1> E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T, P, V<T, P>, 1,1,1,-1> E1 ## E1 ## E1; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE2_4_MEMBERS(T, P, V, E0,E1) \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,0,0> E0 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,0,1> E0 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,1,0> E0 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,1,1> E0 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,0,0> E0 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,0,1> E0 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,1,0> E0 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,1,1> E0 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,0,0> E1 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,0,1> E1 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,1,0> E1 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,1,1> E1 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,0,0> E1 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,0,1> E1 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,1,0> E1 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,1,1> E1 ## E1 ## E1 ## E1; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE3_2_MEMBERS(T, P, V, E0,E1,E2) \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,0,-1,-2> E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,1,-1,-2> E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,2,-1,-2> E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,0,-1,-2> E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,1,-1,-2> E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,2,-1,-2> E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,0,-1,-2> E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,1,-1,-2> E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,2,-1,-2> E2 ## E2; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE3_3_MEMBERS(T, P, V ,E0,E1,E2) \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,0,-1> E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,1,-1> E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,2,-1> E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,0,-1> E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,1,-1> E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,2,-1> E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,0,-1> E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,1,-1> E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,2,-1> E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,0,-1> E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,1,-1> E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,2,-1> E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,0,-1> E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,1,-1> E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,2,-1> E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,0,-1> E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,1,-1> E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,2,-1> E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,0,-1> E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,1,-1> E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,2,-1> E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,0,-1> E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,1,-1> E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,2,-1> E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,0,-1> E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,1,-1> E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,2,-1> E2 ## E2 ## E2; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE3_4_MEMBERS(T, P, V, E0,E1,E2) \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,0,0> E0 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,0,1> E0 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,0,2> E0 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,1,0> E0 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,1,1> E0 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,1,2> E0 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,2,0> E0 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,2,1> E0 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,0,2,2> E0 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,0,0> E0 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,0,1> E0 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,0,2> E0 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,1,0> E0 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,1,1> E0 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,1,2> E0 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,2,0> E0 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,2,1> E0 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,1,2,2> E0 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,0,0> E0 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,0,1> E0 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,0,2> E0 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,1,0> E0 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,1,1> E0 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,1,2> E0 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,2,0> E0 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,2,1> E0 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 0,2,2,2> E0 ## E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,0,0> E1 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,0,1> E1 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,0,2> E1 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,1,0> E1 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,1,1> E1 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,1,2> E1 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,2,0> E1 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,2,1> E1 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,0,2,2> E1 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,0,0> E1 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,0,1> E1 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,0,2> E1 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,1,0> E1 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,1,1> E1 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,1,2> E1 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,2,0> E1 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,2,1> E1 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,1,2,2> E1 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,0,0> E1 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,0,1> E1 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,0,2> E1 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,1,0> E1 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,1,1> E1 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,1,2> E1 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,2,0> E1 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,2,1> E1 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 1,2,2,2> E1 ## E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,0,0> E2 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,0,1> E2 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,0,2> E2 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,1,0> E2 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,1,1> E2 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,1,2> E2 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,2,0> E2 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,2,1> E2 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,0,2,2> E2 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,0,0> E2 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,0,1> E2 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,0,2> E2 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,1,0> E2 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,1,1> E2 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,1,2> E2 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,2,0> E2 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,2,1> E2 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,1,2,2> E2 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,0,0> E2 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,0,1> E2 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,0,2> E2 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,1,0> E2 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,1,1> E2 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,1,2> E2 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,2,0> E2 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,2,1> E2 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4,T, P, V<T, P>, 2,2,2,2> E2 ## E2 ## E2 ## E2; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE4_2_MEMBERS(T, P, V, E0,E1,E2,E3) \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,0,-1,-2> E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,1,-1,-2> E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,2,-1,-2> E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 0,3,-1,-2> E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,0,-1,-2> E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,1,-1,-2> E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,2,-1,-2> E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 1,3,-1,-2> E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,0,-1,-2> E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,1,-1,-2> E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,2,-1,-2> E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 2,3,-1,-2> E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 3,0,-1,-2> E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 3,1,-1,-2> E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 3,2,-1,-2> E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<2,T, P, V<T, P>, 3,3,-1,-2> E3 ## E3; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE4_3_MEMBERS(T,P, V, E0,E1,E2,E3) \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,0,-1> E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,1,-1> E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,2,-1> E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,0,3,-1> E0 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,0,-1> E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,1,-1> E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,2,-1> E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,1,3,-1> E0 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,0,-1> E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,1,-1> E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,2,-1> E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,2,3,-1> E0 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,3,0,-1> E0 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,3,1,-1> E0 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,3,2,-1> E0 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 0,3,3,-1> E0 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,0,-1> E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,1,-1> E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,2,-1> E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,0,3,-1> E1 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,0,-1> E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,1,-1> E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,2,-1> E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,1,3,-1> E1 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,0,-1> E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,1,-1> E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,2,-1> E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,2,3,-1> E1 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,3,0,-1> E1 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,3,1,-1> E1 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,3,2,-1> E1 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 1,3,3,-1> E1 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,0,-1> E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,1,-1> E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,2,-1> E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,0,3,-1> E2 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,0,-1> E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,1,-1> E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,2,-1> E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,1,3,-1> E2 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,0,-1> E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,1,-1> E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,2,-1> E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,2,3,-1> E2 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,3,0,-1> E2 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,3,1,-1> E2 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,3,2,-1> E2 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 2,3,3,-1> E2 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,0,0,-1> E3 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,0,1,-1> E3 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,0,2,-1> E3 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,0,3,-1> E3 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,1,0,-1> E3 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,1,1,-1> E3 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,1,2,-1> E3 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,1,3,-1> E3 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,2,0,-1> E3 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,2,1,-1> E3 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,2,2,-1> E3 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,2,3,-1> E3 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,3,0,-1> E3 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,3,1,-1> E3 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,3,2,-1> E3 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<3,T,P, V<T, P>, 3,3,3,-1> E3 ## E3 ## E3; };
|
||||||
|
|
||||||
|
#define _GLM_SWIZZLE4_4_MEMBERS(T, P, V, E0,E1,E2,E3) \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,0,0> E0 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,0,1> E0 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,0,2> E0 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,0,3> E0 ## E0 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,1,0> E0 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,1,1> E0 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,1,2> E0 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,1,3> E0 ## E0 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,2,0> E0 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,2,1> E0 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,2,2> E0 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,2,3> E0 ## E0 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,3,0> E0 ## E0 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,3,1> E0 ## E0 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,3,2> E0 ## E0 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,0,3,3> E0 ## E0 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,0,0> E0 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,0,1> E0 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,0,2> E0 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,0,3> E0 ## E1 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,1,0> E0 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,1,1> E0 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,1,2> E0 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,1,3> E0 ## E1 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,2,0> E0 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,2,1> E0 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,2,2> E0 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,2,3> E0 ## E1 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,3,0> E0 ## E1 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,3,1> E0 ## E1 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,3,2> E0 ## E1 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,1,3,3> E0 ## E1 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,0,0> E0 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,0,1> E0 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,0,2> E0 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,0,3> E0 ## E2 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,1,0> E0 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,1,1> E0 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,1,2> E0 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,1,3> E0 ## E2 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,2,0> E0 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,2,1> E0 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,2,2> E0 ## E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,2,3> E0 ## E2 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,3,0> E0 ## E2 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,3,1> E0 ## E2 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,3,2> E0 ## E2 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,2,3,3> E0 ## E2 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,0,0> E0 ## E3 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,0,1> E0 ## E3 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,0,2> E0 ## E3 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,0,3> E0 ## E3 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,1,0> E0 ## E3 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,1,1> E0 ## E3 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,1,2> E0 ## E3 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,1,3> E0 ## E3 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,2,0> E0 ## E3 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,2,1> E0 ## E3 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,2,2> E0 ## E3 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,2,3> E0 ## E3 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,3,0> E0 ## E3 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,3,1> E0 ## E3 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,3,2> E0 ## E3 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 0,3,3,3> E0 ## E3 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,0,0> E1 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,0,1> E1 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,0,2> E1 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,0,3> E1 ## E0 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,1,0> E1 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,1,1> E1 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,1,2> E1 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,1,3> E1 ## E0 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,2,0> E1 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,2,1> E1 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,2,2> E1 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,2,3> E1 ## E0 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,3,0> E1 ## E0 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,3,1> E1 ## E0 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,3,2> E1 ## E0 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,0,3,3> E1 ## E0 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,0,0> E1 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,0,1> E1 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,0,2> E1 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,0,3> E1 ## E1 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,1,0> E1 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,1,1> E1 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,1,2> E1 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,1,3> E1 ## E1 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,2,0> E1 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,2,1> E1 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,2,2> E1 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,2,3> E1 ## E1 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,3,0> E1 ## E1 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,3,1> E1 ## E1 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,3,2> E1 ## E1 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,1,3,3> E1 ## E1 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,0,0> E1 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,0,1> E1 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,0,2> E1 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,0,3> E1 ## E2 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,1,0> E1 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,1,1> E1 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,1,2> E1 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,1,3> E1 ## E2 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,2,0> E1 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,2,1> E1 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,2,2> E1 ## E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,2,3> E1 ## E2 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,3,0> E1 ## E2 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,3,1> E1 ## E2 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,3,2> E1 ## E2 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,2,3,3> E1 ## E2 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,0,0> E1 ## E3 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,0,1> E1 ## E3 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,0,2> E1 ## E3 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,0,3> E1 ## E3 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,1,0> E1 ## E3 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,1,1> E1 ## E3 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,1,2> E1 ## E3 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,1,3> E1 ## E3 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,2,0> E1 ## E3 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,2,1> E1 ## E3 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,2,2> E1 ## E3 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,2,3> E1 ## E3 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,3,0> E1 ## E3 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,3,1> E1 ## E3 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,3,2> E1 ## E3 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 1,3,3,3> E1 ## E3 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,0,0> E2 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,0,1> E2 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,0,2> E2 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,0,3> E2 ## E0 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,1,0> E2 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,1,1> E2 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,1,2> E2 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,1,3> E2 ## E0 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,2,0> E2 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,2,1> E2 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,2,2> E2 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,2,3> E2 ## E0 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,3,0> E2 ## E0 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,3,1> E2 ## E0 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,3,2> E2 ## E0 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,0,3,3> E2 ## E0 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,0,0> E2 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,0,1> E2 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,0,2> E2 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,0,3> E2 ## E1 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,1,0> E2 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,1,1> E2 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,1,2> E2 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,1,3> E2 ## E1 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,2,0> E2 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,2,1> E2 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,2,2> E2 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,2,3> E2 ## E1 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,3,0> E2 ## E1 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,3,1> E2 ## E1 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,3,2> E2 ## E1 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,1,3,3> E2 ## E1 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,0,0> E2 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,0,1> E2 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,0,2> E2 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,0,3> E2 ## E2 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,1,0> E2 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,1,1> E2 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,1,2> E2 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,1,3> E2 ## E2 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,2,0> E2 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,2,1> E2 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,2,2> E2 ## E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,2,3> E2 ## E2 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,3,0> E2 ## E2 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,3,1> E2 ## E2 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,3,2> E2 ## E2 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,2,3,3> E2 ## E2 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,0,0> E2 ## E3 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,0,1> E2 ## E3 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,0,2> E2 ## E3 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,0,3> E2 ## E3 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,1,0> E2 ## E3 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,1,1> E2 ## E3 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,1,2> E2 ## E3 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,1,3> E2 ## E3 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,2,0> E2 ## E3 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,2,1> E2 ## E3 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,2,2> E2 ## E3 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,2,3> E2 ## E3 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,3,0> E2 ## E3 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,3,1> E2 ## E3 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,3,2> E2 ## E3 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 2,3,3,3> E2 ## E3 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,0,0> E3 ## E0 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,0,1> E3 ## E0 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,0,2> E3 ## E0 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,0,3> E3 ## E0 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,1,0> E3 ## E0 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,1,1> E3 ## E0 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,1,2> E3 ## E0 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,1,3> E3 ## E0 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,2,0> E3 ## E0 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,2,1> E3 ## E0 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,2,2> E3 ## E0 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,2,3> E3 ## E0 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,3,0> E3 ## E0 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,3,1> E3 ## E0 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,3,2> E3 ## E0 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,0,3,3> E3 ## E0 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,0,0> E3 ## E1 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,0,1> E3 ## E1 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,0,2> E3 ## E1 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,0,3> E3 ## E1 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,1,0> E3 ## E1 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,1,1> E3 ## E1 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,1,2> E3 ## E1 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,1,3> E3 ## E1 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,2,0> E3 ## E1 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,2,1> E3 ## E1 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,2,2> E3 ## E1 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,2,3> E3 ## E1 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,3,0> E3 ## E1 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,3,1> E3 ## E1 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,3,2> E3 ## E1 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,1,3,3> E3 ## E1 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,0,0> E3 ## E2 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,0,1> E3 ## E2 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,0,2> E3 ## E2 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,0,3> E3 ## E2 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,1,0> E3 ## E2 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,1,1> E3 ## E2 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,1,2> E3 ## E2 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,1,3> E3 ## E2 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,2,0> E3 ## E2 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,2,1> E3 ## E2 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,2,2> E3 ## E2 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,2,3> E3 ## E2 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,3,0> E3 ## E2 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,3,1> E3 ## E2 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,3,2> E3 ## E2 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,2,3,3> E3 ## E2 ## E3 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,0,0> E3 ## E3 ## E0 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,0,1> E3 ## E3 ## E0 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,0,2> E3 ## E3 ## E0 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,0,3> E3 ## E3 ## E0 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,1,0> E3 ## E3 ## E1 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,1,1> E3 ## E3 ## E1 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,1,2> E3 ## E3 ## E1 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,1,3> E3 ## E3 ## E1 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,2,0> E3 ## E3 ## E2 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,2,1> E3 ## E3 ## E2 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,2,2> E3 ## E3 ## E2 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,2,3> E3 ## E3 ## E2 ## E3; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,3,0> E3 ## E3 ## E3 ## E0; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,3,1> E3 ## E3 ## E3 ## E1; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,3,2> E3 ## E3 ## E3 ## E2; }; \
|
||||||
|
struct { detail::_swizzle<4, T, P, V<T, P>, 3,3,3,3> E3 ## E3 ## E3 ## E3; };
|
725
extern/glm-0.9.7.5/include/glm/detail/_swizzle_func.hpp
vendored
Normal file
725
extern/glm-0.9.7.5/include/glm/detail/_swizzle_func.hpp
vendored
Normal file
@ -0,0 +1,725 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/_swizzle_func.hpp
|
||||||
|
/// @date 2011-10-16 / 2011-10-16
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, CONST, A, B) \
|
||||||
|
SWIZZLED_TYPE<TMPL_TYPE, PRECISION> A ## B() CONST \
|
||||||
|
{ \
|
||||||
|
return SWIZZLED_TYPE<TMPL_TYPE, PRECISION>(this->A, this->B); \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, CONST, A, B, C) \
|
||||||
|
SWIZZLED_TYPE<TMPL_TYPE, PRECISION> A ## B ## C() CONST \
|
||||||
|
{ \
|
||||||
|
return SWIZZLED_TYPE<TMPL_TYPE, PRECISION>(this->A, this->B, this->C); \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, CONST, A, B, C, D) \
|
||||||
|
SWIZZLED_TYPE<TMPL_TYPE, PRECISION> A ## B ## C ## D() CONST \
|
||||||
|
{ \
|
||||||
|
return SWIZZLED_TYPE<TMPL_TYPE, PRECISION>(this->A, this->B, this->C, this->D); \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC2_ENTRY_DEF(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, CONST, A, B) \
|
||||||
|
template <typename TMPL_TYPE> \
|
||||||
|
SWIZZLED_TYPE<TMPL_TYPE> CLASS_TYPE<TMPL_TYPE, PRECISION>::A ## B() CONST \
|
||||||
|
{ \
|
||||||
|
return SWIZZLED_TYPE<TMPL_TYPE, PRECISION>(this->A, this->B); \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC3_ENTRY_DEF(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, CONST, A, B, C) \
|
||||||
|
template <typename TMPL_TYPE> \
|
||||||
|
SWIZZLED_TYPE<TMPL_TYPE> CLASS_TYPE<TMPL_TYPE, PRECISION>::A ## B ## C() CONST \
|
||||||
|
{ \
|
||||||
|
return SWIZZLED_TYPE<TMPL_TYPE, PRECISION>(this->A, this->B, this->C); \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC4_ENTRY_DEF(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, CONST, A, B, C, D) \
|
||||||
|
template <typename TMPL_TYPE> \
|
||||||
|
SWIZZLED_TYPE<TMPL_TYPE> CLASS_TYPE<TMPL_TYPE, PRECISION>::A ## B ## C ## D() CONST \
|
||||||
|
{ \
|
||||||
|
return SWIZZLED_TYPE<TMPL_TYPE, PRECISION>(this->A, this->B, this->C, this->D); \
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_MUTABLE
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, A)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF_FROM_VEC2(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE) \
|
||||||
|
GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, x, y) \
|
||||||
|
GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, r, g) \
|
||||||
|
GLM_SWIZZLE_GEN_REF2_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, s, t)
|
||||||
|
|
||||||
|
//GLM_SWIZZLE_GEN_REF_FROM_VEC2(valType, detail::vec2, detail::ref2)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF2_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, B)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF3_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, B, A)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_REF3_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC3_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_REF2_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, A, B, C)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF_FROM_VEC3(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE) \
|
||||||
|
GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, x, y, z) \
|
||||||
|
GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, r, g, b) \
|
||||||
|
GLM_SWIZZLE_GEN_REF_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, s, t, p)
|
||||||
|
|
||||||
|
//GLM_SWIZZLE_GEN_REF_FROM_VEC3(valType, detail::vec3, detail::ref2, detail::ref3)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF2_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, GLM_MUTABLE, D, C)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF3_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, C, B)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF4_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, D, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , B, A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , C, A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, , D, B, C, A)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_REF2_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_REF3_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC3_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_REF4_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC4_TYPE, A, B, C, D)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_REF_FROM_VEC4(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE) \
|
||||||
|
GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, x, y, z, w) \
|
||||||
|
GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, r, g, b, a) \
|
||||||
|
GLM_SWIZZLE_GEN_REF_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, s, t, p, q)
|
||||||
|
|
||||||
|
//GLM_SWIZZLE_GEN_REF_FROM_VEC4(valType, detail::vec4, detail::ref2, detail::ref3, detail::ref4)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC2_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC3_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC4_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, B)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC3_TYPE, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_FROM_VEC2_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC4_TYPE, A, B)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC_FROM_VEC2(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, x, y) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, r, g) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC2_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, s, t)
|
||||||
|
|
||||||
|
//GLM_SWIZZLE_GEN_VEC_FROM_VEC2(valType, detail::vec2, detail::vec2, detail::vec3, detail::vec4)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC2_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC3_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC4_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, C)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC3_TYPE, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_FROM_VEC3_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC4_TYPE, A, B, C)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC_FROM_VEC3(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, x, y, z) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, r, g, b) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC3_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, s, t, p)
|
||||||
|
|
||||||
|
//GLM_SWIZZLE_GEN_VEC_FROM_VEC3(valType, detail::vec3, detail::vec2, detail::vec3, detail::vec4)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC2_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC3_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, D)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC4_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, A, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, B, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, C, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, A, D, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, A, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, B, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, C, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, B, D, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, A, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, B, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, C, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, C, D, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, A, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, B, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, C, D, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, A, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, A, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, A, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, A, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, B, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, B, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, B, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, B, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, C, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, C, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, C, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, D, A) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, D, B) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, D, C) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_ENTRY(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_TYPE, const, D, D, D, D)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC2_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC3_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC3_TYPE, A, B, C, D) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC4_FROM_VEC4_SWIZZLE(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC4_TYPE, A, B, C, D)
|
||||||
|
|
||||||
|
#define GLM_SWIZZLE_GEN_VEC_FROM_VEC4(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, x, y, z, w) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, r, g, b, a) \
|
||||||
|
GLM_SWIZZLE_GEN_VEC_FROM_VEC4_COMP(TMPL_TYPE, PRECISION, CLASS_TYPE, SWIZZLED_VEC2_TYPE, SWIZZLED_VEC3_TYPE, SWIZZLED_VEC4_TYPE, s, t, p, q)
|
||||||
|
|
||||||
|
//GLM_SWIZZLE_GEN_VEC_FROM_VEC4(valType, detail::vec4, detail::vec2, detail::vec3, detail::vec4)
|
160
extern/glm-0.9.7.5/include/glm/detail/_vectorize.hpp
vendored
Normal file
160
extern/glm-0.9.7.5/include/glm/detail/_vectorize.hpp
vendored
Normal file
@ -0,0 +1,160 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/_vectorize.hpp
|
||||||
|
/// @date 2011-10-14 / 2011-10-14
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "type_vec1.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename R, typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
struct functor1{};
|
||||||
|
|
||||||
|
template <typename R, typename T, precision P>
|
||||||
|
struct functor1<R, T, P, tvec1>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec1<R, P> call(R (*Func) (T x), tvec1<T, P> const & v)
|
||||||
|
{
|
||||||
|
return tvec1<R, P>(Func(v.x));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename R, typename T, precision P>
|
||||||
|
struct functor1<R, T, P, tvec2>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec2<R, P> call(R (*Func) (T x), tvec2<T, P> const & v)
|
||||||
|
{
|
||||||
|
return tvec2<R, P>(Func(v.x), Func(v.y));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename R, typename T, precision P>
|
||||||
|
struct functor1<R, T, P, tvec3>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec3<R, P> call(R (*Func) (T x), tvec3<T, P> const & v)
|
||||||
|
{
|
||||||
|
return tvec3<R, P>(Func(v.x), Func(v.y), Func(v.z));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename R, typename T, precision P>
|
||||||
|
struct functor1<R, T, P, tvec4>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec4<R, P> call(R (*Func) (T x), tvec4<T, P> const & v)
|
||||||
|
{
|
||||||
|
return tvec4<R, P>(Func(v.x), Func(v.y), Func(v.z), Func(v.w));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
struct functor2{};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2<T, P, tvec1>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, tvec1<T, P> const & b)
|
||||||
|
{
|
||||||
|
return tvec1<T, P>(Func(a.x, b.x));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2<T, P, tvec2>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec2<T, P> call(T (*Func) (T x, T y), tvec2<T, P> const & a, tvec2<T, P> const & b)
|
||||||
|
{
|
||||||
|
return tvec2<T, P>(Func(a.x, b.x), Func(a.y, b.y));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2<T, P, tvec3>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec3<T, P> call(T (*Func) (T x, T y), tvec3<T, P> const & a, tvec3<T, P> const & b)
|
||||||
|
{
|
||||||
|
return tvec3<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2<T, P, tvec4>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec4<T, P> call(T (*Func) (T x, T y), tvec4<T, P> const & a, tvec4<T, P> const & b)
|
||||||
|
{
|
||||||
|
return tvec4<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
struct functor2_vec_sca{};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2_vec_sca<T, P, tvec1>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, T b)
|
||||||
|
{
|
||||||
|
return tvec1<T, P>(Func(a.x, b));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2_vec_sca<T, P, tvec2>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec2<T, P> call(T (*Func) (T x, T y), tvec2<T, P> const & a, T b)
|
||||||
|
{
|
||||||
|
return tvec2<T, P>(Func(a.x, b), Func(a.y, b));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2_vec_sca<T, P, tvec3>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec3<T, P> call(T (*Func) (T x, T y), tvec3<T, P> const & a, T b)
|
||||||
|
{
|
||||||
|
return tvec3<T, P>(Func(a.x, b), Func(a.y, b), Func(a.z, b));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct functor2_vec_sca<T, P, tvec4>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tvec4<T, P> call(T (*Func) (T x, T y), tvec4<T, P> const & a, T b)
|
||||||
|
{
|
||||||
|
return tvec4<T, P>(Func(a.x, b), Func(a.y, b), Func(a.z, b), Func(a.w, b));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
232
extern/glm-0.9.7.5/include/glm/detail/dummy.cpp
vendored
Normal file
232
extern/glm-0.9.7.5/include/glm/detail/dummy.cpp
vendored
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/core/dummy.cpp
|
||||||
|
/// @date 2011-01-19 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// GLM is a header only library. There is nothing to compile.
|
||||||
|
/// dummy.cpp exist only a wordaround for CMake file.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#define GLM_MESSAGES
|
||||||
|
#include <glm/glm.hpp>
|
||||||
|
#include <glm/ext.hpp>
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
struct material
|
||||||
|
{
|
||||||
|
glm::vec4 emission; // Ecm
|
||||||
|
glm::vec4 ambient; // Acm
|
||||||
|
glm::vec4 diffuse; // Dcm
|
||||||
|
glm::vec4 specular; // Scm
|
||||||
|
float shininess; // Srm
|
||||||
|
};
|
||||||
|
|
||||||
|
struct light
|
||||||
|
{
|
||||||
|
glm::vec4 ambient; // Acli
|
||||||
|
glm::vec4 diffuse; // Dcli
|
||||||
|
glm::vec4 specular; // Scli
|
||||||
|
glm::vec4 position; // Ppli
|
||||||
|
glm::vec4 halfVector; // Derived: Hi
|
||||||
|
glm::vec3 spotDirection; // Sdli
|
||||||
|
float spotExponent; // Srli
|
||||||
|
float spotCutoff; // Crli
|
||||||
|
// (range: [0.0,90.0], 180.0)
|
||||||
|
float spotCosCutoff; // Derived: cos(Crli)
|
||||||
|
// (range: [1.0,0.0],-1.0)
|
||||||
|
float constantAttenuation; // K0
|
||||||
|
float linearAttenuation; // K1
|
||||||
|
float quadraticAttenuation;// K2
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// Sample 1
|
||||||
|
#include <glm/vec3.hpp>// glm::vec3
|
||||||
|
#include <glm/geometric.hpp>// glm::cross, glm::normalize
|
||||||
|
|
||||||
|
glm::vec3 computeNormal
|
||||||
|
(
|
||||||
|
glm::vec3 const & a,
|
||||||
|
glm::vec3 const & b,
|
||||||
|
glm::vec3 const & c
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return glm::normalize(glm::cross(c - a, b - a));
|
||||||
|
}
|
||||||
|
|
||||||
|
typedef unsigned int GLuint;
|
||||||
|
#define GL_FALSE 0
|
||||||
|
void glUniformMatrix4fv(GLuint, int, int, float*){}
|
||||||
|
|
||||||
|
// Sample 2
|
||||||
|
#include <glm/vec3.hpp> // glm::vec3
|
||||||
|
#include <glm/vec4.hpp> // glm::vec4, glm::ivec4
|
||||||
|
#include <glm/mat4x4.hpp> // glm::mat4
|
||||||
|
#include <glm/gtc/matrix_transform.hpp> // glm::translate, glm::rotate, glm::scale, glm::perspective
|
||||||
|
#include <glm/gtc/type_ptr.hpp> // glm::value_ptr
|
||||||
|
void func(GLuint LocationMVP, float Translate, glm::vec2 const & Rotate)
|
||||||
|
{
|
||||||
|
glm::mat4 Projection = glm::perspective(45.0f, 4.0f / 3.0f, 0.1f, 100.f);
|
||||||
|
glm::mat4 ViewTranslate = glm::translate(glm::mat4(1.0f), glm::vec3(0.0f, 0.0f, -Translate));
|
||||||
|
glm::mat4 ViewRotateX = glm::rotate(ViewTranslate, Rotate.y, glm::vec3(-1.0f, 0.0f, 0.0f));
|
||||||
|
glm::mat4 View = glm::rotate(ViewRotateX, Rotate.x, glm::vec3(0.0f, 1.0f, 0.0f));
|
||||||
|
glm::mat4 Model = glm::scale(glm::mat4(1.0f), glm::vec3(0.5f));
|
||||||
|
glm::mat4 MVP = Projection * View * Model;
|
||||||
|
glUniformMatrix4fv(LocationMVP, 1, GL_FALSE, glm::value_ptr(MVP));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sample 3
|
||||||
|
#include <glm/vec2.hpp>// glm::vec2
|
||||||
|
#include <glm/packing.hpp>// glm::packUnorm2x16
|
||||||
|
#include <glm/integer.hpp>// glm::uint
|
||||||
|
#include <glm/gtc/type_precision.hpp>// glm::i8vec2, glm::i32vec2
|
||||||
|
std::size_t const VertexCount = 4;
|
||||||
|
// Float quad geometry
|
||||||
|
std::size_t const PositionSizeF32 = VertexCount * sizeof(glm::vec2);
|
||||||
|
glm::vec2 const PositionDataF32[VertexCount] =
|
||||||
|
{
|
||||||
|
glm::vec2(-1.0f,-1.0f),
|
||||||
|
glm::vec2( 1.0f,-1.0f),
|
||||||
|
glm::vec2( 1.0f, 1.0f),
|
||||||
|
glm::vec2(-1.0f, 1.0f)
|
||||||
|
};
|
||||||
|
// Half-float quad geometry
|
||||||
|
std::size_t const PositionSizeF16 = VertexCount * sizeof(glm::uint);
|
||||||
|
glm::uint const PositionDataF16[VertexCount] =
|
||||||
|
{
|
||||||
|
glm::uint(glm::packUnorm2x16(glm::vec2(-1.0f, -1.0f))),
|
||||||
|
glm::uint(glm::packUnorm2x16(glm::vec2( 1.0f, -1.0f))),
|
||||||
|
glm::uint(glm::packUnorm2x16(glm::vec2( 1.0f, 1.0f))),
|
||||||
|
glm::uint(glm::packUnorm2x16(glm::vec2(-1.0f, 1.0f)))
|
||||||
|
};
|
||||||
|
// 8 bits signed integer quad geometry
|
||||||
|
std::size_t const PositionSizeI8 = VertexCount * sizeof(glm::i8vec2);
|
||||||
|
glm::i8vec2 const PositionDataI8[VertexCount] =
|
||||||
|
{
|
||||||
|
glm::i8vec2(-1,-1),
|
||||||
|
glm::i8vec2( 1,-1),
|
||||||
|
glm::i8vec2( 1, 1),
|
||||||
|
glm::i8vec2(-1, 1)
|
||||||
|
};
|
||||||
|
// 32 bits signed integer quad geometry
|
||||||
|
std::size_t const PositionSizeI32 = VertexCount * sizeof(glm::i32vec2);
|
||||||
|
glm::i32vec2 const PositionDataI32[VertexCount] =
|
||||||
|
{
|
||||||
|
glm::i32vec2 (-1,-1),
|
||||||
|
glm::i32vec2 ( 1,-1),
|
||||||
|
glm::i32vec2 ( 1, 1),
|
||||||
|
glm::i32vec2 (-1, 1)
|
||||||
|
};
|
||||||
|
|
||||||
|
struct intersection
|
||||||
|
{
|
||||||
|
glm::vec4 position;
|
||||||
|
glm::vec3 normal;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
// Sample 4
|
||||||
|
#include <glm/vec3.hpp>// glm::vec3
|
||||||
|
#include <glm/geometric.hpp>// glm::normalize, glm::dot, glm::reflect
|
||||||
|
#include <glm/exponential.hpp>// glm::pow
|
||||||
|
#include <glm/gtc/random.hpp>// glm::vecRand3
|
||||||
|
glm::vec3 lighting
|
||||||
|
(
|
||||||
|
intersection const & Intersection,
|
||||||
|
material const & Material,
|
||||||
|
light const & Light,
|
||||||
|
glm::vec3 const & View
|
||||||
|
)
|
||||||
|
{
|
||||||
|
glm::vec3 Color(0.0f);
|
||||||
|
glm::vec3 LightVertor(glm::normalize(
|
||||||
|
Light.position - Intersection.position +
|
||||||
|
glm::vecRand3(0.0f, Light.inaccuracy));
|
||||||
|
|
||||||
|
if(!shadow(Intersection.position, Light.position, LightVertor))
|
||||||
|
{
|
||||||
|
float Diffuse = glm::dot(Intersection.normal, LightVector);
|
||||||
|
if(Diffuse <= 0.0f)
|
||||||
|
return Color;
|
||||||
|
if(Material.isDiffuse())
|
||||||
|
Color += Light.color() * Material.diffuse * Diffuse;
|
||||||
|
if(Material.isSpecular())
|
||||||
|
{
|
||||||
|
glm::vec3 Reflect(glm::reflect(
|
||||||
|
glm::normalize(-LightVector),
|
||||||
|
glm::normalize(Intersection.normal)));
|
||||||
|
float Dot = glm::dot(Reflect, View);
|
||||||
|
float Base = Dot > 0.0f ? Dot : 0.0f;
|
||||||
|
float Specular = glm::pow(Base, Material.exponent);
|
||||||
|
Color += Material.specular * Specular;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return Color;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template<typename, glm::precision> class vecType>
|
||||||
|
T normalizeDotA(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
return glm::dot(x, y) * glm::inversesqrt(glm::dot(x, x) * glm::dot(y, y));
|
||||||
|
}
|
||||||
|
|
||||||
|
#define GLM_TEMPLATE_GENTYPE typename T, glm::precision P, template<typename, glm::precision> class
|
||||||
|
|
||||||
|
template <GLM_TEMPLATE_GENTYPE vecType>
|
||||||
|
T normalizeDotB(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
return glm::dot(x, y) * glm::inversesqrt(glm::dot(x, x) * glm::dot(y, y));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vecType>
|
||||||
|
typename vecType::value_type normalizeDotC(vecType const & a, vecType const & b)
|
||||||
|
{
|
||||||
|
return glm::dot(a, b) * glm::inversesqrt(glm::dot(a, a) * glm::dot(b, b));
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
glm::vec1 o(1);
|
||||||
|
glm::vec2 a(1);
|
||||||
|
glm::vec3 b(1);
|
||||||
|
glm::vec4 c(1);
|
||||||
|
|
||||||
|
glm::quat q;
|
||||||
|
glm::dualquat p;
|
||||||
|
|
||||||
|
glm::mat4 m(1);
|
||||||
|
|
||||||
|
float a0 = normalizeDotA(a, a);
|
||||||
|
float b0 = normalizeDotB(b, b);
|
||||||
|
float c0 = normalizeDotC(c, c);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
456
extern/glm-0.9.7.5/include/glm/detail/func_common.hpp
vendored
Normal file
456
extern/glm-0.9.7.5/include/glm/detail/func_common.hpp
vendored
Normal file
@ -0,0 +1,456 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_common.hpp
|
||||||
|
/// @date 2008-03-08 / 2010-01-26
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_common Common functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// These all operate component-wise. The description is per component.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
#include "precision.hpp"
|
||||||
|
#include "type_int.hpp"
|
||||||
|
#include "_fixes.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_common
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Returns x if x >= 0; otherwise, it returns -x.
|
||||||
|
///
|
||||||
|
/// @tparam genType floating-point or signed integer; scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/abs.xml">GLSL abs man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType abs(genType x);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> abs(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns 1.0 if x > 0, 0.0 if x == 0, or -1.0 if x < 0.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point or signed integer; scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/sign.xml">GLSL sign man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> sign(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns a value equal to the nearest integer that is less then or equal to x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/floor.xml">GLSL floor man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> floor(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns a value equal to the nearest integer to x
|
||||||
|
/// whose absolute value is not larger than the absolute value of x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/trunc.xml">GLSL trunc man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> trunc(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns a value equal to the nearest integer to x.
|
||||||
|
/// The fraction 0.5 will round in a direction chosen by the
|
||||||
|
/// implementation, presumably the direction that is fastest.
|
||||||
|
/// This includes the possibility that round(x) returns the
|
||||||
|
/// same value as roundEven(x) for all values of x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/round.xml">GLSL round man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> round(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns a value equal to the nearest integer to x.
|
||||||
|
/// A fractional part of 0.5 will round toward the nearest even
|
||||||
|
/// integer. (Both 3.5 and 4.5 for x will return 4.0.)
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/roundEven.xml">GLSL roundEven man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
/// @see <a href="http://developer.amd.com/documentation/articles/pages/New-Round-to-Even-Technique.aspx">New round to even technique</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> roundEven(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns a value equal to the nearest integer
|
||||||
|
/// that is greater than or equal to x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/ceil.xml">GLSL ceil man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> ceil(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Return x - floor(x).
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/fract.xml">GLSL fract man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType fract(genType x);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> fract(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Modulus. Returns x - y * floor(x / y)
|
||||||
|
/// for each component in x using the floating point value y.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/mod.xml">GLSL mod man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType mod(genType x, genType y);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> mod(vecType<T, P> const & x, T y);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> mod(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the fractional part of x and sets i to the integer
|
||||||
|
/// part (as a whole number floating point value). Both the
|
||||||
|
/// return value and the output parameter will have the same
|
||||||
|
/// sign as x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/modf.xml">GLSL modf man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType modf(genType x, genType & i);
|
||||||
|
|
||||||
|
/// Returns y if y < x; otherwise, it returns x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point or integer; scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/min.xml">GLSL min man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType min(genType x, genType y);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> min(vecType<T, P> const & x, T y);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> min(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns y if x < y; otherwise, it returns x.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point or integer; scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/max.xml">GLSL max man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType max(genType x, genType y);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> max(vecType<T, P> const & x, T y);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> max(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns min(max(x, minVal), maxVal) for each component in x
|
||||||
|
/// using the floating-point values minVal and maxVal.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point or integer; scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/clamp.xml">GLSL clamp man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType clamp(genType x, genType minVal, genType maxVal);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> clamp(vecType<T, P> const & x, T minVal, T maxVal);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> clamp(vecType<T, P> const & x, vecType<T, P> const & minVal, vecType<T, P> const & maxVal);
|
||||||
|
|
||||||
|
/// If genTypeU is a floating scalar or vector:
|
||||||
|
/// Returns x * (1.0 - a) + y * a, i.e., the linear blend of
|
||||||
|
/// x and y using the floating-point value a.
|
||||||
|
/// The value for a is not restricted to the range [0, 1].
|
||||||
|
///
|
||||||
|
/// If genTypeU is a boolean scalar or vector:
|
||||||
|
/// Selects which vector each returned component comes
|
||||||
|
/// from. For a component of <a> that is false, the
|
||||||
|
/// corresponding component of x is returned. For a
|
||||||
|
/// component of a that is true, the corresponding
|
||||||
|
/// component of y is returned. Components of x and y that
|
||||||
|
/// are not selected are allowed to be invalid floating point
|
||||||
|
/// values and will have no effect on the results. Thus, this
|
||||||
|
/// provides different functionality than
|
||||||
|
/// genType mix(genType x, genType y, genType(a))
|
||||||
|
/// where a is a Boolean vector.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/mix.xml">GLSL mix man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
///
|
||||||
|
/// @param[in] x Value to interpolate.
|
||||||
|
/// @param[in] y Value to interpolate.
|
||||||
|
/// @param[in] a Interpolant.
|
||||||
|
///
|
||||||
|
/// @tparam genTypeT Floating point scalar or vector.
|
||||||
|
/// @tparam genTypeU Floating point or boolean scalar or vector. It can't be a vector if it is the length of genTypeT.
|
||||||
|
///
|
||||||
|
/// @code
|
||||||
|
/// #include <glm/glm.hpp>
|
||||||
|
/// ...
|
||||||
|
/// float a;
|
||||||
|
/// bool b;
|
||||||
|
/// glm::dvec3 e;
|
||||||
|
/// glm::dvec3 f;
|
||||||
|
/// glm::vec4 g;
|
||||||
|
/// glm::vec4 h;
|
||||||
|
/// ...
|
||||||
|
/// glm::vec4 r = glm::mix(g, h, a); // Interpolate with a floating-point scalar two vectors.
|
||||||
|
/// glm::vec4 s = glm::mix(g, h, b); // Teturns g or h;
|
||||||
|
/// glm::dvec3 t = glm::mix(e, f, a); // Types of the third parameter is not required to match with the first and the second.
|
||||||
|
/// glm::vec4 u = glm::mix(g, h, r); // Interpolations can be perform per component with a vector for the last parameter.
|
||||||
|
/// @endcode
|
||||||
|
template <typename T, typename U, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> mix(vecType<T, P> const & x, vecType<T, P> const & y, vecType<U, P> const & a);
|
||||||
|
|
||||||
|
template <typename T, typename U, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> mix(vecType<T, P> const & x, vecType<T, P> const & y, U a);
|
||||||
|
|
||||||
|
template <typename genTypeT, typename genTypeU>
|
||||||
|
GLM_FUNC_DECL genTypeT mix(genTypeT x, genTypeT y, genTypeU a);
|
||||||
|
|
||||||
|
/// Returns 0.0 if x < edge, otherwise it returns 1.0 for each component of a genType.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/step.xml">GLSL step man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType step(genType edge, genType x);
|
||||||
|
|
||||||
|
/// Returns 0.0 if x < edge, otherwise it returns 1.0.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/step.xml">GLSL step man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <template <typename, precision> class vecType, typename T, precision P>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> step(T edge, vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns 0.0 if x < edge, otherwise it returns 1.0.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/step.xml">GLSL step man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <template <typename, precision> class vecType, typename T, precision P>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> step(vecType<T, P> const & edge, vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns 0.0 if x <= edge0 and 1.0 if x >= edge1 and
|
||||||
|
/// performs smooth Hermite interpolation between 0 and 1
|
||||||
|
/// when edge0 < x < edge1. This is useful in cases where
|
||||||
|
/// you would want a threshold function with a smooth
|
||||||
|
/// transition. This is equivalent to:
|
||||||
|
/// genType t;
|
||||||
|
/// t = clamp ((x - edge0) / (edge1 - edge0), 0, 1);
|
||||||
|
/// return t * t * (3 - 2 * t);
|
||||||
|
/// Results are undefined if edge0 >= edge1.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/smoothstep.xml">GLSL smoothstep man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType smoothstep(genType edge0, genType edge1, genType x);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> smoothstep(T edge0, T edge1, vecType<T, P> const & x);
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> smoothstep(vecType<T, P> const & edge0, vecType<T, P> const & edge1, vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns true if x holds a NaN (not a number)
|
||||||
|
/// representation in the underlying implementation's set of
|
||||||
|
/// floating point representations. Returns false otherwise,
|
||||||
|
/// including for implementations with no NaN
|
||||||
|
/// representations.
|
||||||
|
///
|
||||||
|
/// /!\ When using compiler fast math, this function may fail.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/isnan.xml">GLSL isnan man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> isnan(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns true if x holds a positive infinity or negative
|
||||||
|
/// infinity representation in the underlying implementation's
|
||||||
|
/// set of floating point representations. Returns false
|
||||||
|
/// otherwise, including for implementations with no infinity
|
||||||
|
/// representations.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/isinf.xml">GLSL isinf man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> isinf(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns a signed integer value representing
|
||||||
|
/// the encoding of a floating-point value. The floating-point
|
||||||
|
/// value's bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/floatBitsToInt.xml">GLSL floatBitsToInt man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
GLM_FUNC_DECL int floatBitsToInt(float const & v);
|
||||||
|
|
||||||
|
/// Returns a signed integer value representing
|
||||||
|
/// the encoding of a floating-point value. The floatingpoint
|
||||||
|
/// value's bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/floatBitsToInt.xml">GLSL floatBitsToInt man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_DECL vecType<int, P> floatBitsToInt(vecType<float, P> const & v);
|
||||||
|
|
||||||
|
/// Returns a unsigned integer value representing
|
||||||
|
/// the encoding of a floating-point value. The floatingpoint
|
||||||
|
/// value's bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/floatBitsToUint.xml">GLSL floatBitsToUint man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
GLM_FUNC_DECL uint floatBitsToUint(float const & v);
|
||||||
|
|
||||||
|
/// Returns a unsigned integer value representing
|
||||||
|
/// the encoding of a floating-point value. The floatingpoint
|
||||||
|
/// value's bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/floatBitsToUint.xml">GLSL floatBitsToUint man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_DECL vecType<uint, P> floatBitsToUint(vecType<float, P> const & v);
|
||||||
|
|
||||||
|
/// Returns a floating-point value corresponding to a signed
|
||||||
|
/// integer encoding of a floating-point value.
|
||||||
|
/// If an inf or NaN is passed in, it will not signal, and the
|
||||||
|
/// resulting floating point value is unspecified. Otherwise,
|
||||||
|
/// the bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/intBitsToFloat.xml">GLSL intBitsToFloat man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
GLM_FUNC_DECL float intBitsToFloat(int const & v);
|
||||||
|
|
||||||
|
/// Returns a floating-point value corresponding to a signed
|
||||||
|
/// integer encoding of a floating-point value.
|
||||||
|
/// If an inf or NaN is passed in, it will not signal, and the
|
||||||
|
/// resulting floating point value is unspecified. Otherwise,
|
||||||
|
/// the bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/intBitsToFloat.xml">GLSL intBitsToFloat man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_DECL vecType<float, P> intBitsToFloat(vecType<int, P> const & v);
|
||||||
|
|
||||||
|
/// Returns a floating-point value corresponding to a
|
||||||
|
/// unsigned integer encoding of a floating-point value.
|
||||||
|
/// If an inf or NaN is passed in, it will not signal, and the
|
||||||
|
/// resulting floating point value is unspecified. Otherwise,
|
||||||
|
/// the bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/uintBitsToFloat.xml">GLSL uintBitsToFloat man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
GLM_FUNC_DECL float uintBitsToFloat(uint const & v);
|
||||||
|
|
||||||
|
/// Returns a floating-point value corresponding to a
|
||||||
|
/// unsigned integer encoding of a floating-point value.
|
||||||
|
/// If an inf or NaN is passed in, it will not signal, and the
|
||||||
|
/// resulting floating point value is unspecified. Otherwise,
|
||||||
|
/// the bit-level representation is preserved.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/uintBitsToFloat.xml">GLSL uintBitsToFloat man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_DECL vecType<float, P> uintBitsToFloat(vecType<uint, P> const & v);
|
||||||
|
|
||||||
|
/// Computes and returns a * b + c.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/fma.xml">GLSL fma man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType fma(genType const & a, genType const & b, genType const & c);
|
||||||
|
|
||||||
|
/// Splits x into a floating-point significand in the range
|
||||||
|
/// [0.5, 1.0) and an integral exponent of two, such that:
|
||||||
|
/// x = significand * exp(2, exponent)
|
||||||
|
///
|
||||||
|
/// The significand is returned by the function and the
|
||||||
|
/// exponent is returned in the parameter exp. For a
|
||||||
|
/// floating-point value of zero, the significant and exponent
|
||||||
|
/// are both zero. For a floating-point value that is an
|
||||||
|
/// infinity or is not a number, the results are undefined.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/frexp.xml">GLSL frexp man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType, typename genIType>
|
||||||
|
GLM_FUNC_DECL genType frexp(genType const & x, genIType & exp);
|
||||||
|
|
||||||
|
/// Builds a floating-point number from x and the
|
||||||
|
/// corresponding integral exponent of two in exp, returning:
|
||||||
|
/// significand * exp(2, exponent)
|
||||||
|
///
|
||||||
|
/// If this product is too large to be represented in the
|
||||||
|
/// floating-point type, the result is undefined.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/ldexp.xml">GLSL ldexp man page</a>;
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.3 Common Functions</a>
|
||||||
|
template <typename genType, typename genIType>
|
||||||
|
GLM_FUNC_DECL genType ldexp(genType const & x, genIType const & exp);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_common.inl"
|
||||||
|
|
764
extern/glm-0.9.7.5/include/glm/detail/func_common.inl
vendored
Normal file
764
extern/glm-0.9.7.5/include/glm/detail/func_common.inl
vendored
Normal file
@ -0,0 +1,764 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_common.inl
|
||||||
|
/// @date 2008-08-03 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "func_vector_relational.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include "_vectorize.hpp"
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename genFIType, bool /*signed*/>
|
||||||
|
struct compute_abs
|
||||||
|
{};
|
||||||
|
|
||||||
|
template <typename genFIType>
|
||||||
|
struct compute_abs<genFIType, true>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static genFIType call(genFIType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(
|
||||||
|
std::numeric_limits<genFIType>::is_iec559 || std::numeric_limits<genFIType>::is_signed,
|
||||||
|
"'abs' only accept floating-point and integer scalar or vector inputs");
|
||||||
|
|
||||||
|
return x >= genFIType(0) ? x : -x;
|
||||||
|
// TODO, perf comp with: *(((int *) &x) + 1) &= 0x7fffffff;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename genFIType>
|
||||||
|
struct compute_abs<genFIType, false>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static genFIType call(genFIType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(
|
||||||
|
!std::numeric_limits<genFIType>::is_signed && std::numeric_limits<genFIType>::is_integer,
|
||||||
|
"'abs' only accept floating-point and integer scalar or vector inputs");
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, typename U, precision P, template <class, precision> class vecType>
|
||||||
|
struct compute_mix_vector
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x, vecType<T, P> const & y, vecType<U, P> const & a)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<U>::is_iec559, "'mix' only accept floating-point inputs for the interpolator a");
|
||||||
|
|
||||||
|
return vecType<T, P>(vecType<U, P>(x) + a * vecType<U, P>(y - x));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType>
|
||||||
|
struct compute_mix_vector<T, bool, P, vecType>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x, vecType<T, P> const & y, vecType<bool, P> const & a)
|
||||||
|
{
|
||||||
|
vecType<T, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = a[i] ? y[i] : x[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, typename U, precision P, template <class, precision> class vecType>
|
||||||
|
struct compute_mix_scalar
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x, vecType<T, P> const & y, U const & a)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<U>::is_iec559, "'mix' only accept floating-point inputs for the interpolator a");
|
||||||
|
|
||||||
|
return vecType<T, P>(vecType<U, P>(x) + a * vecType<U, P>(y - x));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType>
|
||||||
|
struct compute_mix_scalar<T, bool, P, vecType>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x, vecType<T, P> const & y, bool const & a)
|
||||||
|
{
|
||||||
|
return a ? y : x;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, typename U>
|
||||||
|
struct compute_mix
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(T const & x, T const & y, U const & a)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<U>::is_iec559, "'mix' only accept floating-point inputs for the interpolator a");
|
||||||
|
|
||||||
|
return static_cast<T>(static_cast<U>(x) + a * static_cast<U>(y - x));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T>
|
||||||
|
struct compute_mix<T, bool>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(T const & x, T const & y, bool const & a)
|
||||||
|
{
|
||||||
|
return a ? y : x;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType, bool isFloat = true, bool isSigned = true>
|
||||||
|
struct compute_sign
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return vecType<T, P>(glm::lessThan(vecType<T, P>(0), x)) - vecType<T, P>(glm::lessThan(x, vecType<T, P>(0)));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType>
|
||||||
|
struct compute_sign<T, P, vecType, false, false>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return vecType<T, P>(glm::greaterThan(x , vecType<T, P>(0)));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType>
|
||||||
|
struct compute_sign<T, P, vecType, false, true>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
T const Shift(static_cast<T>(sizeof(T) * 8 - 1));
|
||||||
|
vecType<T, P> const y(vecType<typename make_unsigned<T>::type, P>(-x) >> typename make_unsigned<T>::type(Shift));
|
||||||
|
|
||||||
|
return (x >> Shift) | y;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType, typename genType, bool isFloat = true>
|
||||||
|
struct compute_mod
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & a, genType const & b)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'mod' only accept floating-point inputs. Include <glm/gtc/integer.hpp> for integer inputs.");
|
||||||
|
return a - b * floor(a / b);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
// abs
|
||||||
|
template <>
|
||||||
|
GLM_FUNC_QUALIFIER int32 abs(int32 x)
|
||||||
|
{
|
||||||
|
int32 const y = x >> 31;
|
||||||
|
return (x ^ y) - y;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename genFIType>
|
||||||
|
GLM_FUNC_QUALIFIER genFIType abs(genFIType x)
|
||||||
|
{
|
||||||
|
return detail::compute_abs<genFIType, std::numeric_limits<genFIType>::is_signed>::call(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> abs(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(abs, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// sign
|
||||||
|
// fast and works for any type
|
||||||
|
template <typename genFIType>
|
||||||
|
GLM_FUNC_QUALIFIER genFIType sign(genFIType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(
|
||||||
|
std::numeric_limits<genFIType>::is_iec559 || (std::numeric_limits<genFIType>::is_signed && std::numeric_limits<genFIType>::is_integer),
|
||||||
|
"'sign' only accept signed inputs");
|
||||||
|
|
||||||
|
return detail::compute_sign<genFIType, defaultp, tvec1, std::numeric_limits<genFIType>::is_iec559>::call(tvec1<genFIType>(x)).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> sign(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(
|
||||||
|
std::numeric_limits<T>::is_iec559 || (std::numeric_limits<T>::is_signed && std::numeric_limits<T>::is_integer),
|
||||||
|
"'sign' only accept signed inputs");
|
||||||
|
|
||||||
|
return detail::compute_sign<T, P, vecType, std::numeric_limits<T>::is_iec559>::call(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// floor
|
||||||
|
using ::std::floor;
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> floor(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(floor, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// trunc
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using ::std::trunc;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType trunc(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'trunc' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return x < static_cast<genType>(0) ? -floor(-x) : floor(x);
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> trunc(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(trunc, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// round
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using ::std::round;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType round(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'round' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return x < static_cast<genType>(0) ? static_cast<genType>(int(x - static_cast<genType>(0.5))) : static_cast<genType>(int(x + static_cast<genType>(0.5)));
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> round(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(round, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
// roundEven
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType roundEven(genType const& x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'roundEven' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return genType(int(x + genType(int(x) % 2)));
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
// roundEven
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType roundEven(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'roundEven' only accept floating-point inputs");
|
||||||
|
|
||||||
|
int Integer = static_cast<int>(x);
|
||||||
|
genType IntegerPart = static_cast<genType>(Integer);
|
||||||
|
genType FractionalPart = fract(x);
|
||||||
|
|
||||||
|
if(FractionalPart > static_cast<genType>(0.5) || FractionalPart < static_cast<genType>(0.5))
|
||||||
|
{
|
||||||
|
return round(x);
|
||||||
|
}
|
||||||
|
else if((Integer % 2) == 0)
|
||||||
|
{
|
||||||
|
return IntegerPart;
|
||||||
|
}
|
||||||
|
else if(x <= static_cast<genType>(0)) // Work around...
|
||||||
|
{
|
||||||
|
return IntegerPart - static_cast<genType>(1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return IntegerPart + static_cast<genType>(1);
|
||||||
|
}
|
||||||
|
//else // Bug on MinGW 4.5.2
|
||||||
|
//{
|
||||||
|
// return mix(IntegerPart + genType(-1), IntegerPart + genType(1), x <= genType(0));
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> roundEven(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(roundEven, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ceil
|
||||||
|
using ::std::ceil;
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> ceil(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(ceil, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// fract
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType fract(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'fract' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return fract(tvec1<genType>(x)).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> fract(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return x - floor(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// mod
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType mod(genType x, genType y)
|
||||||
|
{
|
||||||
|
return mod(tvec1<genType>(x), y).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> mod(vecType<T, P> const & x, T y)
|
||||||
|
{
|
||||||
|
return detail::compute_mod<T, P, vecType, T, std::numeric_limits<T>::is_iec559>::call(x, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> mod(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
return detail::compute_mod<T, P, vecType, vecType<T, P>, std::numeric_limits<T>::is_iec559>::call(x, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
// modf
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType modf(genType x, genType & i)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'modf' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return std::modf(x, &i);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec1<T, P> modf(tvec1<T, P> const & x, tvec1<T, P> & i)
|
||||||
|
{
|
||||||
|
return tvec1<T, P>(
|
||||||
|
modf(x.x, i.x));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec2<T, P> modf(tvec2<T, P> const & x, tvec2<T, P> & i)
|
||||||
|
{
|
||||||
|
return tvec2<T, P>(
|
||||||
|
modf(x.x, i.x),
|
||||||
|
modf(x.y, i.y));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> modf(tvec3<T, P> const & x, tvec3<T, P> & i)
|
||||||
|
{
|
||||||
|
return tvec3<T, P>(
|
||||||
|
modf(x.x, i.x),
|
||||||
|
modf(x.y, i.y),
|
||||||
|
modf(x.z, i.z));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec4<T, P> modf(tvec4<T, P> const & x, tvec4<T, P> & i)
|
||||||
|
{
|
||||||
|
return tvec4<T, P>(
|
||||||
|
modf(x.x, i.x),
|
||||||
|
modf(x.y, i.y),
|
||||||
|
modf(x.z, i.z),
|
||||||
|
modf(x.w, i.w));
|
||||||
|
}
|
||||||
|
|
||||||
|
//// Only valid if (INT_MIN <= x-y <= INT_MAX)
|
||||||
|
//// min(x,y)
|
||||||
|
//r = y + ((x - y) & ((x - y) >> (sizeof(int) *
|
||||||
|
//CHAR_BIT - 1)));
|
||||||
|
//// max(x,y)
|
||||||
|
//r = x - ((x - y) & ((x - y) >> (sizeof(int) *
|
||||||
|
//CHAR_BIT - 1)));
|
||||||
|
|
||||||
|
// min
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType min(genType x, genType y)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559 || std::numeric_limits<genType>::is_integer, "'min' only accept floating-point or integer inputs");
|
||||||
|
|
||||||
|
return x < y ? x : y;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> min(vecType<T, P> const & a, T b)
|
||||||
|
{
|
||||||
|
return detail::functor2_vec_sca<T, P, vecType>::call(min, a, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> min(vecType<T, P> const & a, vecType<T, P> const & b)
|
||||||
|
{
|
||||||
|
return detail::functor2<T, P, vecType>::call(min, a, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
// max
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType max(genType x, genType y)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559 || std::numeric_limits<genType>::is_integer, "'max' only accept floating-point or integer inputs");
|
||||||
|
|
||||||
|
return x > y ? x : y;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> max(vecType<T, P> const & a, T b)
|
||||||
|
{
|
||||||
|
return detail::functor2_vec_sca<T, P, vecType>::call(max, a, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> max(vecType<T, P> const & a, vecType<T, P> const & b)
|
||||||
|
{
|
||||||
|
return detail::functor2<T, P, vecType>::call(max, a, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
// clamp
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType clamp(genType x, genType minVal, genType maxVal)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559 || std::numeric_limits<genType>::is_integer, "'clamp' only accept floating-point or integer inputs");
|
||||||
|
|
||||||
|
return min(max(x, minVal), maxVal);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> clamp(vecType<T, P> const & x, T minVal, T maxVal)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559 || std::numeric_limits<T>::is_integer, "'clamp' only accept floating-point or integer inputs");
|
||||||
|
|
||||||
|
return min(max(x, minVal), maxVal);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> clamp(vecType<T, P> const & x, vecType<T, P> const & minVal, vecType<T, P> const & maxVal)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559 || std::numeric_limits<T>::is_integer, "'clamp' only accept floating-point or integer inputs");
|
||||||
|
|
||||||
|
return min(max(x, minVal), maxVal);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename genTypeT, typename genTypeU>
|
||||||
|
GLM_FUNC_QUALIFIER genTypeT mix(genTypeT x, genTypeT y, genTypeU a)
|
||||||
|
{
|
||||||
|
return detail::compute_mix<genTypeT, genTypeU>::call(x, y, a);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, typename U, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> mix(vecType<T, P> const & x, vecType<T, P> const & y, U a)
|
||||||
|
{
|
||||||
|
return detail::compute_mix_scalar<T, U, P, vecType>::call(x, y, a);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, typename U, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> mix(vecType<T, P> const & x, vecType<T, P> const & y, vecType<U, P> const & a)
|
||||||
|
{
|
||||||
|
return detail::compute_mix_vector<T, U, P, vecType>::call(x, y, a);
|
||||||
|
}
|
||||||
|
|
||||||
|
// step
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType step(genType edge, genType x)
|
||||||
|
{
|
||||||
|
return mix(static_cast<genType>(1), static_cast<genType>(0), glm::lessThan(x, edge));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <template <typename, precision> class vecType, typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> step(T edge, vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'step' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return mix(vecType<T, P>(1), vecType<T, P>(0), glm::lessThan(x, vecType<T, P>(edge)));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <template <typename, precision> class vecType, typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> step(vecType<T, P> const & edge, vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return mix(vecType<T, P>(1), vecType<T, P>(0), glm::lessThan(x, edge));
|
||||||
|
}
|
||||||
|
|
||||||
|
// smoothstep
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType smoothstep(genType edge0, genType edge1, genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'smoothstep' only accept floating-point inputs");
|
||||||
|
|
||||||
|
genType const tmp(clamp((x - edge0) / (edge1 - edge0), genType(0), genType(1)));
|
||||||
|
return tmp * tmp * (genType(3) - genType(2) * tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> smoothstep(T edge0, T edge1, vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'smoothstep' only accept floating-point inputs");
|
||||||
|
|
||||||
|
vecType<T, P> const tmp(clamp((x - edge0) / (edge1 - edge0), static_cast<T>(0), static_cast<T>(1)));
|
||||||
|
return tmp * tmp * (static_cast<T>(3) - static_cast<T>(2) * tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> smoothstep(vecType<T, P> const & edge0, vecType<T, P> const & edge1, vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'smoothstep' only accept floating-point inputs");
|
||||||
|
|
||||||
|
vecType<T, P> const tmp(clamp((x - edge0) / (edge1 - edge0), static_cast<T>(0), static_cast<T>(1)));
|
||||||
|
return tmp * tmp * (static_cast<T>(3) - static_cast<T>(2) * tmp);
|
||||||
|
}
|
||||||
|
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using std::isnan;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER bool isnan(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'isnan' only accept floating-point inputs");
|
||||||
|
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
return std::isnan(x);
|
||||||
|
# elif GLM_COMPILER & GLM_COMPILER_VC
|
||||||
|
return _isnan(x) != 0;
|
||||||
|
# elif GLM_COMPILER & GLM_COMPILER_INTEL
|
||||||
|
# if GLM_PLATFORM & GLM_PLATFORM_WINDOWS
|
||||||
|
return _isnan(x) != 0;
|
||||||
|
# else
|
||||||
|
return ::isnan(x) != 0;
|
||||||
|
# endif
|
||||||
|
# elif (GLM_COMPILER & (GLM_COMPILER_GCC | (GLM_COMPILER_APPLE_CLANG | GLM_COMPILER_LLVM))) && (GLM_PLATFORM & GLM_PLATFORM_ANDROID) && __cplusplus < 201103L
|
||||||
|
return _isnan(x) != 0;
|
||||||
|
# elif GLM_COMPILER & GLM_COMPILER_CUDA
|
||||||
|
return isnan(x) != 0;
|
||||||
|
# else
|
||||||
|
return std::isnan(x);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> isnan(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'isnan' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return detail::functor1<bool, T, P, vecType>::call(isnan, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using std::isinf;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER bool isinf(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'isinf' only accept floating-point inputs");
|
||||||
|
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
return std::isinf(x);
|
||||||
|
# elif GLM_COMPILER & (GLM_COMPILER_INTEL | GLM_COMPILER_VC)
|
||||||
|
# if(GLM_PLATFORM & GLM_PLATFORM_WINDOWS)
|
||||||
|
return _fpclass(x) == _FPCLASS_NINF || _fpclass(x) == _FPCLASS_PINF;
|
||||||
|
# else
|
||||||
|
return ::isinf(x);
|
||||||
|
# endif
|
||||||
|
# elif GLM_COMPILER & (GLM_COMPILER_GCC | (GLM_COMPILER_APPLE_CLANG | GLM_COMPILER_LLVM))
|
||||||
|
# if(GLM_PLATFORM & GLM_PLATFORM_ANDROID && __cplusplus < 201103L)
|
||||||
|
return _isinf(x) != 0;
|
||||||
|
# else
|
||||||
|
return std::isinf(x);
|
||||||
|
# endif
|
||||||
|
# elif GLM_COMPILER & GLM_COMPILER_CUDA
|
||||||
|
// http://developer.download.nvidia.com/compute/cuda/4_2/rel/toolkit/docs/online/group__CUDA__MATH__DOUBLE_g13431dd2b40b51f9139cbb7f50c18fab.html#g13431dd2b40b51f9139cbb7f50c18fab
|
||||||
|
return isinf(double(x)) != 0;
|
||||||
|
# else
|
||||||
|
return std::isinf(x);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> isinf(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'isnan' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return detail::functor1<bool, T, P, vecType>::call(isinf, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER int floatBitsToInt(float const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<int&>(const_cast<float&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<int, P> floatBitsToInt(vecType<float, P> const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<vecType<int, P>&>(const_cast<vecType<float, P>&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uint floatBitsToUint(float const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<uint&>(const_cast<float&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<uint, P> floatBitsToUint(vecType<float, P> const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<vecType<uint, P>&>(const_cast<vecType<float, P>&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER float intBitsToFloat(int const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<float&>(const_cast<int&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<float, P> intBitsToFloat(vecType<int, P> const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<vecType<float, P>&>(const_cast<vecType<int, P>&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER float uintBitsToFloat(uint const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<float&>(const_cast<uint&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <template <typename, precision> class vecType, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<float, P> uintBitsToFloat(vecType<uint, P> const & v)
|
||||||
|
{
|
||||||
|
return reinterpret_cast<vecType<float, P>&>(const_cast<vecType<uint, P>&>(v));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType fma(genType const & a, genType const & b, genType const & c)
|
||||||
|
{
|
||||||
|
return a * b + c;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType frexp(genType x, int & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'frexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return std::frexp(x, &exp);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec1<T, P> frexp(tvec1<T, P> const & x, tvec1<int, P> & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'frexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec1<T, P>(std::frexp(x.x, &exp.x));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec2<T, P> frexp(tvec2<T, P> const & x, tvec2<int, P> & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'frexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec2<T, P>(
|
||||||
|
frexp(x.x, exp.x),
|
||||||
|
frexp(x.y, exp.y));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> frexp(tvec3<T, P> const & x, tvec3<int, P> & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'frexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec3<T, P>(
|
||||||
|
frexp(x.x, exp.x),
|
||||||
|
frexp(x.y, exp.y),
|
||||||
|
frexp(x.z, exp.z));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec4<T, P> frexp(tvec4<T, P> const & x, tvec4<int, P> & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'frexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec4<T, P>(
|
||||||
|
frexp(x.x, exp.x),
|
||||||
|
frexp(x.y, exp.y),
|
||||||
|
frexp(x.z, exp.z),
|
||||||
|
frexp(x.w, exp.w));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType ldexp(genType const & x, int const & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'ldexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return std::ldexp(x, exp);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec1<T, P> ldexp(tvec1<T, P> const & x, tvec1<int, P> const & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'ldexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec1<T, P>(
|
||||||
|
ldexp(x.x, exp.x));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec2<T, P> ldexp(tvec2<T, P> const & x, tvec2<int, P> const & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'ldexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec2<T, P>(
|
||||||
|
ldexp(x.x, exp.x),
|
||||||
|
ldexp(x.y, exp.y));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> ldexp(tvec3<T, P> const & x, tvec3<int, P> const & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'ldexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec3<T, P>(
|
||||||
|
ldexp(x.x, exp.x),
|
||||||
|
ldexp(x.y, exp.y),
|
||||||
|
ldexp(x.z, exp.z));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec4<T, P> ldexp(tvec4<T, P> const & x, tvec4<int, P> const & exp)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'ldexp' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec4<T, P>(
|
||||||
|
ldexp(x.x, exp.x),
|
||||||
|
ldexp(x.y, exp.y),
|
||||||
|
ldexp(x.z, exp.z),
|
||||||
|
ldexp(x.w, exp.w));
|
||||||
|
}
|
||||||
|
}//namespace glm
|
132
extern/glm-0.9.7.5/include/glm/detail/func_exponential.hpp
vendored
Normal file
132
extern/glm-0.9.7.5/include/glm/detail/func_exponential.hpp
vendored
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_exponential.hpp
|
||||||
|
/// @date 2008-08-08 / 2011-06-14
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_exponential Exponential functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// These all operate component-wise. The description is per component.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "type_vec1.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_exponential
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Returns 'base' raised to the power 'exponent'.
|
||||||
|
///
|
||||||
|
/// @param base Floating point value. pow function is defined for input values of 'base' defined in the range (inf-, inf+) in the limit of the type precision.
|
||||||
|
/// @param exponent Floating point value representing the 'exponent'.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/pow.xml">GLSL pow man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> pow(vecType<T, P> const & base, vecType<T, P> const & exponent);
|
||||||
|
|
||||||
|
/// Returns the natural exponentiation of x, i.e., e^x.
|
||||||
|
///
|
||||||
|
/// @param v exp function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type precision.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/exp.xml">GLSL exp man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> exp(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the natural logarithm of v, i.e.,
|
||||||
|
/// returns the value y which satisfies the equation x = e^y.
|
||||||
|
/// Results are undefined if v <= 0.
|
||||||
|
///
|
||||||
|
/// @param v log function is defined for input values of v defined in the range (0, inf+) in the limit of the type precision.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/log.xml">GLSL log man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> log(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns 2 raised to the v power.
|
||||||
|
///
|
||||||
|
/// @param v exp2 function is defined for input values of v defined in the range (inf-, inf+) in the limit of the type precision.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/exp2.xml">GLSL exp2 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> exp2(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the base 2 log of x, i.e., returns the value y,
|
||||||
|
/// which satisfies the equation x = 2 ^ y.
|
||||||
|
///
|
||||||
|
/// @param v log2 function is defined for input values of v defined in the range (0, inf+) in the limit of the type precision.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/log2.xml">GLSL log2 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> log2(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the positive square root of v.
|
||||||
|
///
|
||||||
|
/// @param v sqrt function is defined for input values of v defined in the range [0, inf+) in the limit of the type precision.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/sqrt.xml">GLSL sqrt man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
//template <typename genType>
|
||||||
|
//GLM_FUNC_DECL genType sqrt(genType const & x);
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> sqrt(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the reciprocal of the positive square root of v.
|
||||||
|
///
|
||||||
|
/// @param v inversesqrt function is defined for input values of v defined in the range [0, inf+) in the limit of the type precision.
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/inversesqrt.xml">GLSL inversesqrt man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.2 Exponential Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> inversesqrt(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_exponential.inl"
|
161
extern/glm-0.9.7.5/include/glm/detail/func_exponential.inl
vendored
Normal file
161
extern/glm-0.9.7.5/include/glm/detail/func_exponential.inl
vendored
Normal file
@ -0,0 +1,161 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_exponential.inl
|
||||||
|
/// @date 2008-08-03 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "func_vector_relational.hpp"
|
||||||
|
#include "_vectorize.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cmath>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using std::log2;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
genType log2(genType Value)
|
||||||
|
{
|
||||||
|
return std::log(Value) * static_cast<genType>(1.4426950408889634073599246810019);
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <class, precision> class vecType, bool isFloat = true>
|
||||||
|
struct compute_log2
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & vec)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(log2, vec);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <template <class, precision> class vecType, typename T, precision P>
|
||||||
|
struct compute_inversesqrt
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return static_cast<T>(1) / sqrt(x);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <template <class, precision> class vecType>
|
||||||
|
struct compute_inversesqrt<vecType, float, lowp>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<float, lowp> call(vecType<float, lowp> const & x)
|
||||||
|
{
|
||||||
|
vecType<float, lowp> tmp(x);
|
||||||
|
vecType<float, lowp> xhalf(tmp * 0.5f);
|
||||||
|
vecType<uint, lowp>* p = reinterpret_cast<vecType<uint, lowp>*>(const_cast<vecType<float, lowp>*>(&x));
|
||||||
|
vecType<uint, lowp> i = vecType<uint, lowp>(0x5f375a86) - (*p >> vecType<uint, lowp>(1));
|
||||||
|
vecType<float, lowp>* ptmp = reinterpret_cast<vecType<float, lowp>*>(&i);
|
||||||
|
tmp = *ptmp;
|
||||||
|
tmp = tmp * (1.5f - xhalf * tmp * tmp);
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
// pow
|
||||||
|
using std::pow;
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> pow(vecType<T, P> const & base, vecType<T, P> const & exponent)
|
||||||
|
{
|
||||||
|
return detail::functor2<T, P, vecType>::call(pow, base, exponent);
|
||||||
|
}
|
||||||
|
|
||||||
|
// exp
|
||||||
|
using std::exp;
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> exp(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(exp, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// log
|
||||||
|
using std::log;
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> log(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(log, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
//exp2, ln2 = 0.69314718055994530941723212145818f
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType exp2(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'exp2' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return std::exp(static_cast<genType>(0.69314718055994530941723212145818) * x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> exp2(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(exp2, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// log2, ln2 = 0.69314718055994530941723212145818f
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType log2(genType x)
|
||||||
|
{
|
||||||
|
return log2(tvec1<genType>(x)).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> log2(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::compute_log2<T, P, vecType, std::numeric_limits<T>::is_iec559>::call(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// sqrt
|
||||||
|
using std::sqrt;
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> sqrt(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'sqrt' only accept floating-point inputs");
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(sqrt, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// inversesqrt
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType inversesqrt(genType x)
|
||||||
|
{
|
||||||
|
return static_cast<genType>(1) / sqrt(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> inversesqrt(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'inversesqrt' only accept floating-point inputs");
|
||||||
|
return detail::compute_inversesqrt<vecType, T, P>::call(x);
|
||||||
|
}
|
||||||
|
}//namespace glm
|
142
extern/glm-0.9.7.5/include/glm/detail/func_geometric.hpp
vendored
Normal file
142
extern/glm-0.9.7.5/include/glm/detail/func_geometric.hpp
vendored
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_geometric.hpp
|
||||||
|
/// @date 2008-08-03 / 2011-06-14
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_geometric Geometric functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// These operate on vectors as vectors, not component-wise.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_geometric
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Returns the length of x, i.e., sqrt(x * x).
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/length.xml">GLSL length man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL T length(
|
||||||
|
vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Returns the distance betwwen p0 and p1, i.e., length(p0 - p1).
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/distance.xml">GLSL distance man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL T distance(
|
||||||
|
vecType<T, P> const & p0,
|
||||||
|
vecType<T, P> const & p1);
|
||||||
|
|
||||||
|
/// Returns the dot product of x and y, i.e., result = x * y.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/dot.xml">GLSL dot man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL T dot(
|
||||||
|
vecType<T, P> const & x,
|
||||||
|
vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the cross product of x and y.
|
||||||
|
///
|
||||||
|
/// @tparam valType Floating-point scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/cross.xml">GLSL cross man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tvec3<T, P> cross(
|
||||||
|
tvec3<T, P> const & x,
|
||||||
|
tvec3<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns a vector in the same direction as x but with length of 1.
|
||||||
|
/// According to issue 10 GLSL 1.10 specification, if length(x) == 0 then result is undefined and generate an error.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/normalize.xml">GLSL normalize man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> normalize(
|
||||||
|
vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// If dot(Nref, I) < 0.0, return N, otherwise, return -N.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/faceforward.xml">GLSL faceforward man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> faceforward(
|
||||||
|
vecType<T, P> const & N,
|
||||||
|
vecType<T, P> const & I,
|
||||||
|
vecType<T, P> const & Nref);
|
||||||
|
|
||||||
|
/// For the incident vector I and surface orientation N,
|
||||||
|
/// returns the reflection direction : result = I - 2.0 * dot(N, I) * N.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/reflect.xml">GLSL reflect man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL genType reflect(
|
||||||
|
genType const & I,
|
||||||
|
genType const & N);
|
||||||
|
|
||||||
|
/// For the incident vector I and surface normal N,
|
||||||
|
/// and the ratio of indices of refraction eta,
|
||||||
|
/// return the refraction vector.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/refract.xml">GLSL refract man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.5 Geometric Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> refract(
|
||||||
|
vecType<T, P> const & I,
|
||||||
|
vecType<T, P> const & N,
|
||||||
|
T eta);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_geometric.inl"
|
201
extern/glm-0.9.7.5/include/glm/detail/func_geometric.inl
vendored
Normal file
201
extern/glm-0.9.7.5/include/glm/detail/func_geometric.inl
vendored
Normal file
@ -0,0 +1,201 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_geometric.inl
|
||||||
|
/// @date 2008-08-03 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "func_exponential.hpp"
|
||||||
|
#include "func_common.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include "type_float.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <template <class, precision> class vecType, typename T, precision P>
|
||||||
|
struct compute_dot{};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_dot<tvec1, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tvec1<T, P> const & a, tvec1<T, P> const & b)
|
||||||
|
{
|
||||||
|
return a.x * b.x;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_dot<tvec2, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tvec2<T, P> const & x, tvec2<T, P> const & y)
|
||||||
|
{
|
||||||
|
tvec2<T, P> tmp(x * y);
|
||||||
|
return tmp.x + tmp.y;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_dot<tvec3, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tvec3<T, P> const & x, tvec3<T, P> const & y)
|
||||||
|
{
|
||||||
|
tvec3<T, P> tmp(x * y);
|
||||||
|
return tmp.x + tmp.y + tmp.z;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_dot<tvec4, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tvec4<T, P> const & x, tvec4<T, P> const & y)
|
||||||
|
{
|
||||||
|
tvec4<T, P> tmp(x * y);
|
||||||
|
return (tmp.x + tmp.y) + (tmp.z + tmp.w);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
// length
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType length(genType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'length' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return abs(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER T length(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'length' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return sqrt(dot(v, v));
|
||||||
|
}
|
||||||
|
|
||||||
|
// distance
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType distance(genType const & p0, genType const & p1)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'distance' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return length(p1 - p0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER T distance(vecType<T, P> const & p0, vecType<T, P> const & p1)
|
||||||
|
{
|
||||||
|
return length(p1 - p0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// dot
|
||||||
|
template <typename T>
|
||||||
|
GLM_FUNC_QUALIFIER T dot(T x, T y)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'dot' only accept floating-point inputs");
|
||||||
|
return x * y;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER T dot(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'dot' only accept floating-point inputs");
|
||||||
|
return detail::compute_dot<vecType, T, P>::call(x, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
// cross
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tvec3<T, P> cross(tvec3<T, P> const & x, tvec3<T, P> const & y)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'cross' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return tvec3<T, P>(
|
||||||
|
x.y * y.z - y.y * x.z,
|
||||||
|
x.z * y.x - y.z * x.x,
|
||||||
|
x.x * y.y - y.x * x.y);
|
||||||
|
}
|
||||||
|
|
||||||
|
// normalize
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType normalize(genType const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'normalize' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return x < genType(0) ? genType(-1) : genType(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> normalize(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'normalize' only accept floating-point inputs");
|
||||||
|
|
||||||
|
return x * inversesqrt(dot(x, x));
|
||||||
|
}
|
||||||
|
|
||||||
|
// faceforward
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType faceforward(genType const & N, genType const & I, genType const & Nref)
|
||||||
|
{
|
||||||
|
return dot(Nref, I) < static_cast<genType>(0) ? N : -N;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> faceforward(vecType<T, P> const & N, vecType<T, P> const & I, vecType<T, P> const & Nref)
|
||||||
|
{
|
||||||
|
return dot(Nref, I) < static_cast<T>(0) ? N : -N;
|
||||||
|
}
|
||||||
|
|
||||||
|
// reflect
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType reflect(genType const & I, genType const & N)
|
||||||
|
{
|
||||||
|
return I - N * dot(N, I) * static_cast<genType>(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// refract
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType refract(genType const & I, genType const & N, genType const & eta)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'refract' only accept floating-point inputs");
|
||||||
|
|
||||||
|
genType const dotValue(dot(N, I));
|
||||||
|
genType const k(static_cast<genType>(1) - eta * eta * (static_cast<genType>(1) - dotValue * dotValue));
|
||||||
|
return (eta * I - (eta * dotValue + sqrt(k)) * N) * static_cast<genType>(k >= static_cast<genType>(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> refract(vecType<T, P> const & I, vecType<T, P> const & N, T eta)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'refract' only accept floating-point inputs");
|
||||||
|
|
||||||
|
T const dotValue(dot(N, I));
|
||||||
|
T const k(static_cast<T>(1) - eta * eta * (static_cast<T>(1) - dotValue * dotValue));
|
||||||
|
return (eta * I - (eta * dotValue + std::sqrt(k)) * N) * static_cast<T>(k >= static_cast<T>(0));
|
||||||
|
}
|
||||||
|
}//namespace glm
|
232
extern/glm-0.9.7.5/include/glm/detail/func_integer.hpp
vendored
Normal file
232
extern/glm-0.9.7.5/include/glm/detail/func_integer.hpp
vendored
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_integer.hpp
|
||||||
|
/// @date 2010-03-17 / 2011-06-18
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_integer Integer functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// These all operate component-wise. The description is per component.
|
||||||
|
/// The notation [a, b] means the set of bits from bit-number a through bit-number
|
||||||
|
/// b, inclusive. The lowest-order bit is bit 0.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
#include "precision.hpp"
|
||||||
|
#include "func_common.hpp"
|
||||||
|
#include "func_vector_relational.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_integer
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Adds 32-bit unsigned integer x and y, returning the sum
|
||||||
|
/// modulo pow(2, 32). The value carry is set to 0 if the sum was
|
||||||
|
/// less than pow(2, 32), or to 1 otherwise.
|
||||||
|
///
|
||||||
|
/// @tparam genUType Unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/uaddCarry.xml">GLSL uaddCarry man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<uint, P> uaddCarry(
|
||||||
|
vecType<uint, P> const & x,
|
||||||
|
vecType<uint, P> const & y,
|
||||||
|
vecType<uint, P> & carry);
|
||||||
|
|
||||||
|
/// Subtracts the 32-bit unsigned integer y from x, returning
|
||||||
|
/// the difference if non-negative, or pow(2, 32) plus the difference
|
||||||
|
/// otherwise. The value borrow is set to 0 if x >= y, or to 1 otherwise.
|
||||||
|
///
|
||||||
|
/// @tparam genUType Unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/usubBorrow.xml">GLSL usubBorrow man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<uint, P> usubBorrow(
|
||||||
|
vecType<uint, P> const & x,
|
||||||
|
vecType<uint, P> const & y,
|
||||||
|
vecType<uint, P> & borrow);
|
||||||
|
|
||||||
|
/// Multiplies 32-bit integers x and y, producing a 64-bit
|
||||||
|
/// result. The 32 least-significant bits are returned in lsb.
|
||||||
|
/// The 32 most-significant bits are returned in msb.
|
||||||
|
///
|
||||||
|
/// @tparam genUType Unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/umulExtended.xml">GLSL umulExtended man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL void umulExtended(
|
||||||
|
vecType<uint, P> const & x,
|
||||||
|
vecType<uint, P> const & y,
|
||||||
|
vecType<uint, P> & msb,
|
||||||
|
vecType<uint, P> & lsb);
|
||||||
|
|
||||||
|
/// Multiplies 32-bit integers x and y, producing a 64-bit
|
||||||
|
/// result. The 32 least-significant bits are returned in lsb.
|
||||||
|
/// The 32 most-significant bits are returned in msb.
|
||||||
|
///
|
||||||
|
/// @tparam genIType Signed integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/imulExtended.xml">GLSL imulExtended man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL void imulExtended(
|
||||||
|
vecType<int, P> const & x,
|
||||||
|
vecType<int, P> const & y,
|
||||||
|
vecType<int, P> & msb,
|
||||||
|
vecType<int, P> & lsb);
|
||||||
|
|
||||||
|
/// Extracts bits [offset, offset + bits - 1] from value,
|
||||||
|
/// returning them in the least significant bits of the result.
|
||||||
|
/// For unsigned data types, the most significant bits of the
|
||||||
|
/// result will be set to zero. For signed data types, the
|
||||||
|
/// most significant bits will be set to the value of bit offset + base - 1.
|
||||||
|
///
|
||||||
|
/// If bits is zero, the result will be zero. The result will be
|
||||||
|
/// undefined if offset or bits is negative, or if the sum of
|
||||||
|
/// offset and bits is greater than the number of bits used
|
||||||
|
/// to store the operand.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/bitfieldExtract.xml">GLSL bitfieldExtract man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> bitfieldExtract(
|
||||||
|
vecType<T, P> const & Value,
|
||||||
|
int Offset,
|
||||||
|
int Bits);
|
||||||
|
|
||||||
|
/// Returns the insertion the bits least-significant bits of insert into base.
|
||||||
|
///
|
||||||
|
/// The result will have bits [offset, offset + bits - 1] taken
|
||||||
|
/// from bits [0, bits - 1] of insert, and all other bits taken
|
||||||
|
/// directly from the corresponding bits of base. If bits is
|
||||||
|
/// zero, the result will simply be base. The result will be
|
||||||
|
/// undefined if offset or bits is negative, or if the sum of
|
||||||
|
/// offset and bits is greater than the number of bits used to
|
||||||
|
/// store the operand.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/bitfieldInsert.xml">GLSL bitfieldInsert man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> bitfieldInsert(
|
||||||
|
vecType<T, P> const & Base,
|
||||||
|
vecType<T, P> const & Insert,
|
||||||
|
int Offset,
|
||||||
|
int Bits);
|
||||||
|
|
||||||
|
/// Returns the reversal of the bits of value.
|
||||||
|
/// The bit numbered n of the result will be taken from bit (bits - 1) - n of value,
|
||||||
|
/// where bits is the total number of bits used to represent value.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/bitfieldReverse.xml">GLSL bitfieldReverse man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> bitfieldReverse(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the number of bits set to 1 in the binary representation of value.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/bitCount.xml">GLSL bitCount man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_DECL int bitCount(genType v);
|
||||||
|
|
||||||
|
/// Returns the number of bits set to 1 in the binary representation of value.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/bitCount.xml">GLSL bitCount man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<int, P> bitCount(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the bit number of the least significant bit set to
|
||||||
|
/// 1 in the binary representation of value.
|
||||||
|
/// If value is zero, -1 will be returned.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/findLSB.xml">GLSL findLSB man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_DECL int findLSB(genIUType x);
|
||||||
|
|
||||||
|
/// Returns the bit number of the least significant bit set to
|
||||||
|
/// 1 in the binary representation of value.
|
||||||
|
/// If value is zero, -1 will be returned.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/findLSB.xml">GLSL findLSB man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<int, P> findLSB(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the bit number of the most significant bit in the binary representation of value.
|
||||||
|
/// For positive integers, the result will be the bit number of the most significant bit set to 1.
|
||||||
|
/// For negative integers, the result will be the bit number of the most significant
|
||||||
|
/// bit set to 0. For a value of zero or negative one, -1 will be returned.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/findMSB.xml">GLSL findMSB man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_DECL int findMSB(genIUType x);
|
||||||
|
|
||||||
|
/// Returns the bit number of the most significant bit in the binary representation of value.
|
||||||
|
/// For positive integers, the result will be the bit number of the most significant bit set to 1.
|
||||||
|
/// For negative integers, the result will be the bit number of the most significant
|
||||||
|
/// bit set to 0. For a value of zero or negative one, -1 will be returned.
|
||||||
|
///
|
||||||
|
/// @tparam T Signed or unsigned integer scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/findMSB.xml">GLSL findMSB man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.8 Integer Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<int, P> findMSB(vecType<T, P> const & v);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_integer.inl"
|
389
extern/glm-0.9.7.5/include/glm/detail/func_integer.inl
vendored
Normal file
389
extern/glm-0.9.7.5/include/glm/detail/func_integer.inl
vendored
Normal file
@ -0,0 +1,389 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_integer.inl
|
||||||
|
/// @date 2010-03-17 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include "type_int.hpp"
|
||||||
|
#include "_vectorize.hpp"
|
||||||
|
#if(GLM_ARCH != GLM_ARCH_PURE)
|
||||||
|
#if(GLM_COMPILER & GLM_COMPILER_VC)
|
||||||
|
# include <intrin.h>
|
||||||
|
# pragma intrinsic(_BitScanReverse)
|
||||||
|
#endif//(GLM_COMPILER & GLM_COMPILER_VC)
|
||||||
|
#endif//(GLM_ARCH != GLM_ARCH_PURE)
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename T>
|
||||||
|
GLM_FUNC_QUALIFIER T mask(T Bits)
|
||||||
|
{
|
||||||
|
return Bits >= sizeof(T) * 8 ? ~static_cast<T>(0) : (static_cast<T>(1) << Bits) - static_cast<T>(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <bool EXEC = false>
|
||||||
|
struct compute_bitfieldReverseStep
|
||||||
|
{
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & v, T, T)
|
||||||
|
{
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct compute_bitfieldReverseStep<true>
|
||||||
|
{
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & v, T Mask, T Shift)
|
||||||
|
{
|
||||||
|
return (v & Mask) << Shift | (v & (~Mask)) >> Shift;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <bool EXEC = false>
|
||||||
|
struct compute_bitfieldBitCountStep
|
||||||
|
{
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & v, T, T)
|
||||||
|
{
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct compute_bitfieldBitCountStep<true>
|
||||||
|
{
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & v, T Mask, T Shift)
|
||||||
|
{
|
||||||
|
return (v & Mask) + ((v >> Shift) & Mask);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename genIUType, size_t Bits>
|
||||||
|
struct compute_findLSB
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static int call(genIUType Value)
|
||||||
|
{
|
||||||
|
if(Value == 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
return glm::bitCount(~Value & (Value - static_cast<genIUType>(1)));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
# if GLM_HAS_BITSCAN_WINDOWS
|
||||||
|
template <typename genIUType>
|
||||||
|
struct compute_findLSB<genIUType, 32>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static int call(genIUType Value)
|
||||||
|
{
|
||||||
|
unsigned long Result(0);
|
||||||
|
unsigned char IsNotNull = _BitScanForward(&Result, *reinterpret_cast<unsigned long*>(&Value));
|
||||||
|
return IsNotNull ? int(Result) : -1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
# if !((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_MODEL == GLM_MODEL_32))
|
||||||
|
template <typename genIUType>
|
||||||
|
struct compute_findLSB<genIUType, 64>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static int call(genIUType Value)
|
||||||
|
{
|
||||||
|
unsigned long Result(0);
|
||||||
|
unsigned char IsNotNull = _BitScanForward64(&Result, *reinterpret_cast<unsigned __int64*>(&Value));
|
||||||
|
return IsNotNull ? int(Result) : -1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
# endif
|
||||||
|
# endif//GLM_HAS_BITSCAN_WINDOWS
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType, bool EXEC = true>
|
||||||
|
struct compute_findMSB_step_vec
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x, T Shift)
|
||||||
|
{
|
||||||
|
return x | (x >> Shift);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <typename, glm::precision> class vecType>
|
||||||
|
struct compute_findMSB_step_vec<T, P, vecType, false>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<T, P> call(vecType<T, P> const & x, T)
|
||||||
|
{
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <typename, glm::precision> class vecType, int>
|
||||||
|
struct compute_findMSB_vec
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<int, P> call(vecType<T, P> const & vec)
|
||||||
|
{
|
||||||
|
vecType<T, P> x(vec);
|
||||||
|
x = compute_findMSB_step_vec<T, P, vecType, sizeof(T) * 8 >= 8>::call(x, static_cast<T>( 1));
|
||||||
|
x = compute_findMSB_step_vec<T, P, vecType, sizeof(T) * 8 >= 8>::call(x, static_cast<T>( 2));
|
||||||
|
x = compute_findMSB_step_vec<T, P, vecType, sizeof(T) * 8 >= 8>::call(x, static_cast<T>( 4));
|
||||||
|
x = compute_findMSB_step_vec<T, P, vecType, sizeof(T) * 8 >= 16>::call(x, static_cast<T>( 8));
|
||||||
|
x = compute_findMSB_step_vec<T, P, vecType, sizeof(T) * 8 >= 32>::call(x, static_cast<T>(16));
|
||||||
|
x = compute_findMSB_step_vec<T, P, vecType, sizeof(T) * 8 >= 64>::call(x, static_cast<T>(32));
|
||||||
|
return vecType<int, P>(sizeof(T) * 8 - 1) - glm::bitCount(~x);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
# if GLM_HAS_BITSCAN_WINDOWS
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_QUALIFIER int compute_findMSB_32(genIUType Value)
|
||||||
|
{
|
||||||
|
unsigned long Result(0);
|
||||||
|
unsigned char IsNotNull = _BitScanReverse(&Result, *reinterpret_cast<unsigned long*>(&Value));
|
||||||
|
return IsNotNull ? int(Result) : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType>
|
||||||
|
struct compute_findMSB_vec<T, P, vecType, 32>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<int, P> call(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<int, T, P, vecType>::call(compute_findMSB_32, x);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
# if !((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_MODEL == GLM_MODEL_32))
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_QUALIFIER int compute_findMSB_64(genIUType Value)
|
||||||
|
{
|
||||||
|
unsigned long Result(0);
|
||||||
|
unsigned char IsNotNull = _BitScanReverse64(&Result, *reinterpret_cast<unsigned __int64*>(&Value));
|
||||||
|
return IsNotNull ? int(Result) : -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <class, glm::precision> class vecType>
|
||||||
|
struct compute_findMSB_vec<T, P, vecType, 64>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static vecType<int, P> call(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
return detail::functor1<int, T, P, vecType>::call(compute_findMSB_64, x);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
# endif
|
||||||
|
# endif//GLM_HAS_BITSCAN_WINDOWS
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
// uaddCarry
|
||||||
|
GLM_FUNC_QUALIFIER uint uaddCarry(uint const & x, uint const & y, uint & Carry)
|
||||||
|
{
|
||||||
|
uint64 const Value64(static_cast<uint64>(x) + static_cast<uint64>(y));
|
||||||
|
uint64 const Max32((static_cast<uint64>(1) << static_cast<uint64>(32)) - static_cast<uint64>(1));
|
||||||
|
Carry = Value64 > Max32 ? 1 : 0;
|
||||||
|
return static_cast<uint32>(Value64 % (Max32 + static_cast<uint64>(1)));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<uint, P> uaddCarry(vecType<uint, P> const & x, vecType<uint, P> const & y, vecType<uint, P> & Carry)
|
||||||
|
{
|
||||||
|
vecType<uint64, P> Value64(vecType<uint64, P>(x) + vecType<uint64, P>(y));
|
||||||
|
vecType<uint64, P> Max32((static_cast<uint64>(1) << static_cast<uint64>(32)) - static_cast<uint64>(1));
|
||||||
|
Carry = mix(vecType<uint32, P>(0), vecType<uint32, P>(1), greaterThan(Value64, Max32));
|
||||||
|
return vecType<uint32,P>(Value64 % (Max32 + static_cast<uint64>(1)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// usubBorrow
|
||||||
|
GLM_FUNC_QUALIFIER uint usubBorrow(uint const & x, uint const & y, uint & Borrow)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(sizeof(uint) == sizeof(uint32), "uint and uint32 size mismatch");
|
||||||
|
|
||||||
|
Borrow = x >= y ? static_cast<uint32>(0) : static_cast<uint32>(1);
|
||||||
|
if(y >= x)
|
||||||
|
return y - x;
|
||||||
|
else
|
||||||
|
return static_cast<uint32>((static_cast<int64>(1) << static_cast<int64>(32)) + (static_cast<int64>(y) - static_cast<int64>(x)));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<uint, P> usubBorrow(vecType<uint, P> const & x, vecType<uint, P> const & y, vecType<uint, P> & Borrow)
|
||||||
|
{
|
||||||
|
Borrow = mix(vecType<uint, P>(1), vecType<uint, P>(0), greaterThanEqual(x, y));
|
||||||
|
vecType<uint, P> const YgeX(y - x);
|
||||||
|
vecType<uint, P> const XgeY(vecType<uint32, P>((static_cast<int64>(1) << static_cast<int64>(32)) + (vecType<int64, P>(y) - vecType<int64, P>(x))));
|
||||||
|
return mix(XgeY, YgeX, greaterThanEqual(y, x));
|
||||||
|
}
|
||||||
|
|
||||||
|
// umulExtended
|
||||||
|
GLM_FUNC_QUALIFIER void umulExtended(uint const & x, uint const & y, uint & msb, uint & lsb)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(sizeof(uint) == sizeof(uint32), "uint and uint32 size mismatch");
|
||||||
|
|
||||||
|
uint64 Value64 = static_cast<uint64>(x) * static_cast<uint64>(y);
|
||||||
|
msb = static_cast<uint>(Value64 >> static_cast<uint64>(32));
|
||||||
|
lsb = static_cast<uint>(Value64);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER void umulExtended(vecType<uint, P> const & x, vecType<uint, P> const & y, vecType<uint, P> & msb, vecType<uint, P> & lsb)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(sizeof(uint) == sizeof(uint32), "uint and uint32 size mismatch");
|
||||||
|
|
||||||
|
vecType<uint64, P> Value64(vecType<uint64, P>(x) * vecType<uint64, P>(y));
|
||||||
|
msb = vecType<uint32, P>(Value64 >> static_cast<uint64>(32));
|
||||||
|
lsb = vecType<uint32, P>(Value64);
|
||||||
|
}
|
||||||
|
|
||||||
|
// imulExtended
|
||||||
|
GLM_FUNC_QUALIFIER void imulExtended(int x, int y, int & msb, int & lsb)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(sizeof(int) == sizeof(int32), "int and int32 size mismatch");
|
||||||
|
|
||||||
|
int64 Value64 = static_cast<int64>(x) * static_cast<int64>(y);
|
||||||
|
msb = static_cast<int>(Value64 >> static_cast<int64>(32));
|
||||||
|
lsb = static_cast<int>(Value64);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER void imulExtended(vecType<int, P> const & x, vecType<int, P> const & y, vecType<int, P> & msb, vecType<int, P> & lsb)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(sizeof(int) == sizeof(int32), "int and int32 size mismatch");
|
||||||
|
|
||||||
|
vecType<int64, P> Value64(vecType<int64, P>(x) * vecType<int64, P>(y));
|
||||||
|
lsb = vecType<int32, P>(Value64 & static_cast<int64>(0xFFFFFFFF));
|
||||||
|
msb = vecType<int32, P>((Value64 >> static_cast<int64>(32)) & static_cast<int64>(0xFFFFFFFF));
|
||||||
|
}
|
||||||
|
|
||||||
|
// bitfieldExtract
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_QUALIFIER genIUType bitfieldExtract(genIUType Value, int Offset, int Bits)
|
||||||
|
{
|
||||||
|
return bitfieldExtract(tvec1<genIUType>(Value), Offset, Bits).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> bitfieldExtract(vecType<T, P> const & Value, int Offset, int Bits)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'bitfieldExtract' only accept integer inputs");
|
||||||
|
|
||||||
|
return (Value >> static_cast<T>(Offset)) & static_cast<T>(detail::mask(Bits));
|
||||||
|
}
|
||||||
|
|
||||||
|
// bitfieldInsert
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_QUALIFIER genIUType bitfieldInsert(genIUType const & Base, genIUType const & Insert, int Offset, int Bits)
|
||||||
|
{
|
||||||
|
return bitfieldInsert(tvec1<genIUType>(Base), tvec1<genIUType>(Insert), Offset, Bits).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> bitfieldInsert(vecType<T, P> const & Base, vecType<T, P> const & Insert, int Offset, int Bits)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'bitfieldInsert' only accept integer values");
|
||||||
|
|
||||||
|
T const Mask = static_cast<T>(detail::mask(Bits) << Offset);
|
||||||
|
return (Base & ~Mask) | (Insert & Mask);
|
||||||
|
}
|
||||||
|
|
||||||
|
// bitfieldReverse
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType bitfieldReverse(genType x)
|
||||||
|
{
|
||||||
|
return bitfieldReverse(glm::tvec1<genType, glm::defaultp>(x)).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <typename, glm::precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> bitfieldReverse(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
vecType<T, P> x(v);
|
||||||
|
x = detail::compute_bitfieldReverseStep<sizeof(T) * 8 >= 2>::call(x, T(0x5555555555555555ull), static_cast<T>( 1));
|
||||||
|
x = detail::compute_bitfieldReverseStep<sizeof(T) * 8 >= 4>::call(x, T(0x3333333333333333ull), static_cast<T>( 2));
|
||||||
|
x = detail::compute_bitfieldReverseStep<sizeof(T) * 8 >= 8>::call(x, T(0x0F0F0F0F0F0F0F0Full), static_cast<T>( 4));
|
||||||
|
x = detail::compute_bitfieldReverseStep<sizeof(T) * 8 >= 16>::call(x, T(0x00FF00FF00FF00FFull), static_cast<T>( 8));
|
||||||
|
x = detail::compute_bitfieldReverseStep<sizeof(T) * 8 >= 32>::call(x, T(0x0000FFFF0000FFFFull), static_cast<T>(16));
|
||||||
|
x = detail::compute_bitfieldReverseStep<sizeof(T) * 8 >= 64>::call(x, T(0x00000000FFFFFFFFull), static_cast<T>(32));
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
|
||||||
|
// bitCount
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER int bitCount(genType x)
|
||||||
|
{
|
||||||
|
return bitCount(glm::tvec1<genType, glm::defaultp>(x)).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, glm::precision P, template <typename, glm::precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<int, P> bitCount(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
vecType<typename detail::make_unsigned<T>::type, P> x(*reinterpret_cast<vecType<typename detail::make_unsigned<T>::type, P> const *>(&v));
|
||||||
|
x = detail::compute_bitfieldBitCountStep<sizeof(T) * 8 >= 2>::call(x, typename detail::make_unsigned<T>::type(0x5555555555555555ull), typename detail::make_unsigned<T>::type( 1));
|
||||||
|
x = detail::compute_bitfieldBitCountStep<sizeof(T) * 8 >= 4>::call(x, typename detail::make_unsigned<T>::type(0x3333333333333333ull), typename detail::make_unsigned<T>::type( 2));
|
||||||
|
x = detail::compute_bitfieldBitCountStep<sizeof(T) * 8 >= 8>::call(x, typename detail::make_unsigned<T>::type(0x0F0F0F0F0F0F0F0Full), typename detail::make_unsigned<T>::type( 4));
|
||||||
|
x = detail::compute_bitfieldBitCountStep<sizeof(T) * 8 >= 16>::call(x, typename detail::make_unsigned<T>::type(0x00FF00FF00FF00FFull), typename detail::make_unsigned<T>::type( 8));
|
||||||
|
x = detail::compute_bitfieldBitCountStep<sizeof(T) * 8 >= 32>::call(x, typename detail::make_unsigned<T>::type(0x0000FFFF0000FFFFull), typename detail::make_unsigned<T>::type(16));
|
||||||
|
x = detail::compute_bitfieldBitCountStep<sizeof(T) * 8 >= 64>::call(x, typename detail::make_unsigned<T>::type(0x00000000FFFFFFFFull), typename detail::make_unsigned<T>::type(32));
|
||||||
|
return vecType<int, P>(x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// findLSB
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_QUALIFIER int findLSB(genIUType Value)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'findLSB' only accept integer values");
|
||||||
|
|
||||||
|
return detail::compute_findLSB<genIUType, sizeof(genIUType) * 8>::call(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<int, P> findLSB(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'findLSB' only accept integer values");
|
||||||
|
|
||||||
|
return detail::functor1<int, T, P, vecType>::call(findLSB, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
// findMSB
|
||||||
|
template <typename genIUType>
|
||||||
|
GLM_FUNC_QUALIFIER int findMSB(genIUType x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'findMSB' only accept integer values");
|
||||||
|
|
||||||
|
return findMSB(tvec1<genIUType>(x)).x;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<int, P> findMSB(vecType<T, P> const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'findMSB' only accept integer values");
|
||||||
|
|
||||||
|
return detail::compute_findMSB_vec<T, P, vecType, sizeof(T) * 8>::call(x);
|
||||||
|
}
|
||||||
|
}//namespace glm
|
178
extern/glm-0.9.7.5/include/glm/detail/func_matrix.hpp
vendored
Normal file
178
extern/glm-0.9.7.5/include/glm/detail/func_matrix.hpp
vendored
Normal file
@ -0,0 +1,178 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_matrix.hpp
|
||||||
|
/// @date 2008-08-03 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.6 Matrix Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_matrix Matrix functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// For each of the following built-in matrix functions, there is both a
|
||||||
|
/// single-precision floating point version, where all arguments and return values
|
||||||
|
/// are single precision, and a double-precision floating version, where all
|
||||||
|
/// arguments and return values are double precision. Only the single-precision
|
||||||
|
/// floating point version is shown.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
// Dependencies
|
||||||
|
#include "../detail/precision.hpp"
|
||||||
|
#include "../detail/setup.hpp"
|
||||||
|
#include "../detail/type_mat.hpp"
|
||||||
|
#include "../vec2.hpp"
|
||||||
|
#include "../vec3.hpp"
|
||||||
|
#include "../vec4.hpp"
|
||||||
|
#include "../mat2x2.hpp"
|
||||||
|
#include "../mat2x3.hpp"
|
||||||
|
#include "../mat2x4.hpp"
|
||||||
|
#include "../mat3x2.hpp"
|
||||||
|
#include "../mat3x3.hpp"
|
||||||
|
#include "../mat3x4.hpp"
|
||||||
|
#include "../mat4x2.hpp"
|
||||||
|
#include "../mat4x3.hpp"
|
||||||
|
#include "../mat4x4.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec2, tvec2>
|
||||||
|
{
|
||||||
|
typedef tmat2x2<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec2, tvec3>
|
||||||
|
{
|
||||||
|
typedef tmat3x2<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec2, tvec4>
|
||||||
|
{
|
||||||
|
typedef tmat4x2<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec3, tvec2>
|
||||||
|
{
|
||||||
|
typedef tmat2x3<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec3, tvec3>
|
||||||
|
{
|
||||||
|
typedef tmat3x3<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec3, tvec4>
|
||||||
|
{
|
||||||
|
typedef tmat4x3<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec4, tvec2>
|
||||||
|
{
|
||||||
|
typedef tmat2x4<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec4, tvec3>
|
||||||
|
{
|
||||||
|
typedef tmat3x4<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct outerProduct_trait<T, P, tvec4, tvec4>
|
||||||
|
{
|
||||||
|
typedef tmat4x4<T, P> type;
|
||||||
|
};
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
/// @addtogroup core_func_matrix
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Multiply matrix x by matrix y component-wise, i.e.,
|
||||||
|
/// result[i][j] is the scalar product of x[i][j] and y[i][j].
|
||||||
|
///
|
||||||
|
/// @tparam matType Floating-point matrix types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/matrixCompMult.xml">GLSL matrixCompMult man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.6 Matrix Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_DECL matType<T, P> matrixCompMult(matType<T, P> const & x, matType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Treats the first parameter c as a column vector
|
||||||
|
/// and the second parameter r as a row vector
|
||||||
|
/// and does a linear algebraic matrix multiply c * r.
|
||||||
|
///
|
||||||
|
/// @tparam matType Floating-point matrix types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/outerProduct.xml">GLSL outerProduct man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.6 Matrix Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecTypeA, template <typename, precision> class vecTypeB>
|
||||||
|
GLM_FUNC_DECL typename detail::outerProduct_trait<T, P, vecTypeA, vecTypeB>::type outerProduct(vecTypeA<T, P> const & c, vecTypeB<T, P> const & r);
|
||||||
|
|
||||||
|
/// Returns the transposed matrix of x
|
||||||
|
///
|
||||||
|
/// @tparam matType Floating-point matrix types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/transpose.xml">GLSL transpose man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.6 Matrix Functions</a>
|
||||||
|
# if((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC2012))
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_DECL typename matType<T, P>::transpose_type transpose(matType<T, P> const & x);
|
||||||
|
# endif
|
||||||
|
|
||||||
|
/// Return the determinant of a squared matrix.
|
||||||
|
///
|
||||||
|
/// @tparam valType Floating-point scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/determinant.xml">GLSL determinant man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.6 Matrix Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_DECL T determinant(matType<T, P> const & m);
|
||||||
|
|
||||||
|
/// Return the inverse of a squared matrix.
|
||||||
|
///
|
||||||
|
/// @tparam valType Floating-point scalar types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/inverse.xml">GLSL inverse man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.6 Matrix Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_DECL matType<T, P> inverse(matType<T, P> const & m);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_matrix.inl"
|
310
extern/glm-0.9.7.5/include/glm/detail/func_matrix.inl
vendored
Normal file
310
extern/glm-0.9.7.5/include/glm/detail/func_matrix.inl
vendored
Normal file
@ -0,0 +1,310 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_matrix.inl
|
||||||
|
/// @date 2008-03-08 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "../geometric.hpp"
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <template <class, precision> class matType, typename T, precision P>
|
||||||
|
struct compute_transpose{};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat2x2, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat2x2<T, P> call(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat2x2<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat2x3, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat3x2<T, P> call(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat3x2<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[2][0] = m[0][2];
|
||||||
|
result[2][1] = m[1][2];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat2x4, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat4x2<T, P> call(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat4x2<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[2][0] = m[0][2];
|
||||||
|
result[2][1] = m[1][2];
|
||||||
|
result[3][0] = m[0][3];
|
||||||
|
result[3][1] = m[1][3];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat3x2, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat2x3<T, P> call(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat2x3<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[0][2] = m[2][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[1][2] = m[2][1];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat3x3, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat3x3<T, P> call(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat3x3<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[0][2] = m[2][0];
|
||||||
|
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[1][2] = m[2][1];
|
||||||
|
|
||||||
|
result[2][0] = m[0][2];
|
||||||
|
result[2][1] = m[1][2];
|
||||||
|
result[2][2] = m[2][2];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat3x4, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat4x3<T, P> call(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat4x3<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[0][2] = m[2][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[1][2] = m[2][1];
|
||||||
|
result[2][0] = m[0][2];
|
||||||
|
result[2][1] = m[1][2];
|
||||||
|
result[2][2] = m[2][2];
|
||||||
|
result[3][0] = m[0][3];
|
||||||
|
result[3][1] = m[1][3];
|
||||||
|
result[3][2] = m[2][3];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat4x2, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat2x4<T, P> call(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat2x4<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[0][2] = m[2][0];
|
||||||
|
result[0][3] = m[3][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[1][2] = m[2][1];
|
||||||
|
result[1][3] = m[3][1];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat4x3, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat3x4<T, P> call(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat3x4<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[0][2] = m[2][0];
|
||||||
|
result[0][3] = m[3][0];
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[1][2] = m[2][1];
|
||||||
|
result[1][3] = m[3][1];
|
||||||
|
result[2][0] = m[0][2];
|
||||||
|
result[2][1] = m[1][2];
|
||||||
|
result[2][2] = m[2][2];
|
||||||
|
result[2][3] = m[3][2];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_transpose<tmat4x4, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static tmat4x4<T, P> call(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
tmat4x4<T, P> result(uninitialize);
|
||||||
|
result[0][0] = m[0][0];
|
||||||
|
result[0][1] = m[1][0];
|
||||||
|
result[0][2] = m[2][0];
|
||||||
|
result[0][3] = m[3][0];
|
||||||
|
|
||||||
|
result[1][0] = m[0][1];
|
||||||
|
result[1][1] = m[1][1];
|
||||||
|
result[1][2] = m[2][1];
|
||||||
|
result[1][3] = m[3][1];
|
||||||
|
|
||||||
|
result[2][0] = m[0][2];
|
||||||
|
result[2][1] = m[1][2];
|
||||||
|
result[2][2] = m[2][2];
|
||||||
|
result[2][3] = m[3][2];
|
||||||
|
|
||||||
|
result[3][0] = m[0][3];
|
||||||
|
result[3][1] = m[1][3];
|
||||||
|
result[3][2] = m[2][3];
|
||||||
|
result[3][3] = m[3][3];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <template <class, precision> class matType, typename T, precision P>
|
||||||
|
struct compute_determinant{};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_determinant<tmat2x2, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m[0][0] * m[1][1] - m[1][0] * m[0][1];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_determinant<tmat3x3, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return
|
||||||
|
+ m[0][0] * (m[1][1] * m[2][2] - m[2][1] * m[1][2])
|
||||||
|
- m[1][0] * (m[0][1] * m[2][2] - m[2][1] * m[0][2])
|
||||||
|
+ m[2][0] * (m[0][1] * m[1][2] - m[1][1] * m[0][2]);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
struct compute_determinant<tmat4x4, T, P>
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER static T call(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
T SubFactor00 = m[2][2] * m[3][3] - m[3][2] * m[2][3];
|
||||||
|
T SubFactor01 = m[2][1] * m[3][3] - m[3][1] * m[2][3];
|
||||||
|
T SubFactor02 = m[2][1] * m[3][2] - m[3][1] * m[2][2];
|
||||||
|
T SubFactor03 = m[2][0] * m[3][3] - m[3][0] * m[2][3];
|
||||||
|
T SubFactor04 = m[2][0] * m[3][2] - m[3][0] * m[2][2];
|
||||||
|
T SubFactor05 = m[2][0] * m[3][1] - m[3][0] * m[2][1];
|
||||||
|
|
||||||
|
tvec4<T, P> DetCof(
|
||||||
|
+ (m[1][1] * SubFactor00 - m[1][2] * SubFactor01 + m[1][3] * SubFactor02),
|
||||||
|
- (m[1][0] * SubFactor00 - m[1][2] * SubFactor03 + m[1][3] * SubFactor04),
|
||||||
|
+ (m[1][0] * SubFactor01 - m[1][1] * SubFactor03 + m[1][3] * SubFactor05),
|
||||||
|
- (m[1][0] * SubFactor02 - m[1][1] * SubFactor04 + m[1][2] * SubFactor05));
|
||||||
|
|
||||||
|
return
|
||||||
|
m[0][0] * DetCof[0] + m[0][1] * DetCof[1] +
|
||||||
|
m[0][2] * DetCof[2] + m[0][3] * DetCof[3];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_QUALIFIER matType<T, P> matrixCompMult(matType<T, P> const & x, matType<T, P> const & y)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'matrixCompMult' only accept floating-point inputs");
|
||||||
|
|
||||||
|
matType<T, P> result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(result); ++i)
|
||||||
|
result[i] = x[i] * y[i];
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<typename T, precision P, template <typename, precision> class vecTypeA, template <typename, precision> class vecTypeB>
|
||||||
|
GLM_FUNC_QUALIFIER typename detail::outerProduct_trait<T, P, vecTypeA, vecTypeB>::type outerProduct(vecTypeA<T, P> const & c, vecTypeB<T, P> const & r)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'outerProduct' only accept floating-point inputs");
|
||||||
|
|
||||||
|
typename detail::outerProduct_trait<T, P, vecTypeA, vecTypeB>::type m(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(m); ++i)
|
||||||
|
m[i] = c * r[i];
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_QUALIFIER typename matType<T, P>::transpose_type transpose(matType<T, P> const & m)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'transpose' only accept floating-point inputs");
|
||||||
|
return detail::compute_transpose<matType, T, P>::call(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_QUALIFIER T determinant(matType<T, P> const & m)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'determinant' only accept floating-point inputs");
|
||||||
|
return detail::compute_determinant<matType, T, P>::call(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class matType>
|
||||||
|
GLM_FUNC_QUALIFIER matType<T, P> inverse(matType<T, P> const & m)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'inverse' only accept floating-point inputs");
|
||||||
|
return detail::compute_inverse(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
}//namespace glm
|
197
extern/glm-0.9.7.5/include/glm/detail/func_packing.hpp
vendored
Normal file
197
extern/glm-0.9.7.5/include/glm/detail/func_packing.hpp
vendored
Normal file
@ -0,0 +1,197 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_packing.hpp
|
||||||
|
/// @date 2010-03-17 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
/// @see gtc_packing
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_packing Floating-Point Pack and Unpack Functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// These functions do not operate component-wise, rather as described in each case.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_packing
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.
|
||||||
|
/// Then, the results are packed into the returned 32-bit unsigned integer.
|
||||||
|
///
|
||||||
|
/// The conversion for component c of v to fixed point is done as follows:
|
||||||
|
/// packUnorm2x16: round(clamp(c, 0, +1) * 65535.0)
|
||||||
|
///
|
||||||
|
/// The first component of the vector will be written to the least significant bits of the output;
|
||||||
|
/// the last component will be written to the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/packUnorm2x16.xml">GLSL packUnorm2x16 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL uint packUnorm2x16(vec2 const & v);
|
||||||
|
|
||||||
|
/// First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.
|
||||||
|
/// Then, the results are packed into the returned 32-bit unsigned integer.
|
||||||
|
///
|
||||||
|
/// The conversion for component c of v to fixed point is done as follows:
|
||||||
|
/// packSnorm2x16: round(clamp(v, -1, +1) * 32767.0)
|
||||||
|
///
|
||||||
|
/// The first component of the vector will be written to the least significant bits of the output;
|
||||||
|
/// the last component will be written to the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/packSnorm2x16.xml">GLSL packSnorm2x16 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL uint packSnorm2x16(vec2 const & v);
|
||||||
|
|
||||||
|
/// First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.
|
||||||
|
/// Then, the results are packed into the returned 32-bit unsigned integer.
|
||||||
|
///
|
||||||
|
/// The conversion for component c of v to fixed point is done as follows:
|
||||||
|
/// packUnorm4x8: round(clamp(c, 0, +1) * 255.0)
|
||||||
|
///
|
||||||
|
/// The first component of the vector will be written to the least significant bits of the output;
|
||||||
|
/// the last component will be written to the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/packUnorm4x8.xml">GLSL packUnorm4x8 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL uint packUnorm4x8(vec4 const & v);
|
||||||
|
|
||||||
|
/// First, converts each component of the normalized floating-point value v into 8- or 16-bit integer values.
|
||||||
|
/// Then, the results are packed into the returned 32-bit unsigned integer.
|
||||||
|
///
|
||||||
|
/// The conversion for component c of v to fixed point is done as follows:
|
||||||
|
/// packSnorm4x8: round(clamp(c, -1, +1) * 127.0)
|
||||||
|
///
|
||||||
|
/// The first component of the vector will be written to the least significant bits of the output;
|
||||||
|
/// the last component will be written to the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/packSnorm4x8.xml">GLSL packSnorm4x8 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL uint packSnorm4x8(vec4 const & v);
|
||||||
|
|
||||||
|
/// First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.
|
||||||
|
/// Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.
|
||||||
|
///
|
||||||
|
/// The conversion for unpacked fixed-point value f to floating point is done as follows:
|
||||||
|
/// unpackUnorm2x16: f / 65535.0
|
||||||
|
///
|
||||||
|
/// The first component of the returned vector will be extracted from the least significant bits of the input;
|
||||||
|
/// the last component will be extracted from the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/unpackUnorm2x16.xml">GLSL unpackUnorm2x16 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL vec2 unpackUnorm2x16(uint p);
|
||||||
|
|
||||||
|
/// First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.
|
||||||
|
/// Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.
|
||||||
|
///
|
||||||
|
/// The conversion for unpacked fixed-point value f to floating point is done as follows:
|
||||||
|
/// unpackSnorm2x16: clamp(f / 32767.0, -1, +1)
|
||||||
|
///
|
||||||
|
/// The first component of the returned vector will be extracted from the least significant bits of the input;
|
||||||
|
/// the last component will be extracted from the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/unpackSnorm2x16.xml">GLSL unpackSnorm2x16 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL vec2 unpackSnorm2x16(uint p);
|
||||||
|
|
||||||
|
/// First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.
|
||||||
|
/// Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.
|
||||||
|
///
|
||||||
|
/// The conversion for unpacked fixed-point value f to floating point is done as follows:
|
||||||
|
/// unpackUnorm4x8: f / 255.0
|
||||||
|
///
|
||||||
|
/// The first component of the returned vector will be extracted from the least significant bits of the input;
|
||||||
|
/// the last component will be extracted from the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/unpackUnorm4x8.xml">GLSL unpackUnorm4x8 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL vec4 unpackUnorm4x8(uint p);
|
||||||
|
|
||||||
|
/// First, unpacks a single 32-bit unsigned integer p into a pair of 16-bit unsigned integers, four 8-bit unsigned integers, or four 8-bit signed integers.
|
||||||
|
/// Then, each component is converted to a normalized floating-point value to generate the returned two- or four-component vector.
|
||||||
|
///
|
||||||
|
/// The conversion for unpacked fixed-point value f to floating point is done as follows:
|
||||||
|
/// unpackSnorm4x8: clamp(f / 127.0, -1, +1)
|
||||||
|
///
|
||||||
|
/// The first component of the returned vector will be extracted from the least significant bits of the input;
|
||||||
|
/// the last component will be extracted from the most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/unpackSnorm4x8.xml">GLSL unpackSnorm4x8 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL vec4 unpackSnorm4x8(uint p);
|
||||||
|
|
||||||
|
/// Returns a double-precision value obtained by packing the components of v into a 64-bit value.
|
||||||
|
/// If an IEEE 754 Inf or NaN is created, it will not signal, and the resulting floating point value is unspecified.
|
||||||
|
/// Otherwise, the bit- level representation of v is preserved.
|
||||||
|
/// The first vector component specifies the 32 least significant bits;
|
||||||
|
/// the second component specifies the 32 most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/packDouble2x32.xml">GLSL packDouble2x32 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL double packDouble2x32(uvec2 const & v);
|
||||||
|
|
||||||
|
/// Returns a two-component unsigned integer vector representation of v.
|
||||||
|
/// The bit-level representation of v is preserved.
|
||||||
|
/// The first component of the vector contains the 32 least significant bits of the double;
|
||||||
|
/// the second component consists the 32 most significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/unpackDouble2x32.xml">GLSL unpackDouble2x32 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL uvec2 unpackDouble2x32(double v);
|
||||||
|
|
||||||
|
/// Returns an unsigned integer obtained by converting the components of a two-component floating-point vector
|
||||||
|
/// to the 16-bit floating-point representation found in the OpenGL Specification,
|
||||||
|
/// and then packing these two 16- bit integers into a 32-bit unsigned integer.
|
||||||
|
/// The first vector component specifies the 16 least-significant bits of the result;
|
||||||
|
/// the second component specifies the 16 most-significant bits.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/packHalf2x16.xml">GLSL packHalf2x16 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL uint packHalf2x16(vec2 const & v);
|
||||||
|
|
||||||
|
/// Returns a two-component floating-point vector with components obtained by unpacking a 32-bit unsigned integer into a pair of 16-bit values,
|
||||||
|
/// interpreting those values as 16-bit floating-point numbers according to the OpenGL Specification,
|
||||||
|
/// and converting them to 32-bit floating-point values.
|
||||||
|
/// The first component of the vector is obtained from the 16 least-significant bits of v;
|
||||||
|
/// the second component is obtained from the 16 most-significant bits of v.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/unpackHalf2x16.xml">GLSL unpackHalf2x16 man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.4 Floating-Point Pack and Unpack Functions</a>
|
||||||
|
GLM_FUNC_DECL vec2 unpackHalf2x16(uint v);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_packing.inl"
|
215
extern/glm-0.9.7.5/include/glm/detail/func_packing.inl
vendored
Normal file
215
extern/glm-0.9.7.5/include/glm/detail/func_packing.inl
vendored
Normal file
@ -0,0 +1,215 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_packing.inl
|
||||||
|
/// @date 2010-03-17 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "func_common.hpp"
|
||||||
|
#include "type_half.hpp"
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER uint packUnorm2x16(vec2 const & v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
u16 in[2];
|
||||||
|
uint out;
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u16vec2 result(round(clamp(v, 0.0f, 1.0f) * 65535.0f));
|
||||||
|
|
||||||
|
u.in[0] = result[0];
|
||||||
|
u.in[1] = result[1];
|
||||||
|
|
||||||
|
return u.out;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER vec2 unpackUnorm2x16(uint p)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
uint in;
|
||||||
|
u16 out[2];
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in = p;
|
||||||
|
|
||||||
|
return vec2(u.out[0], u.out[1]) * 1.5259021896696421759365224689097e-5f;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uint packSnorm2x16(vec2 const & v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
i16 in[2];
|
||||||
|
uint out;
|
||||||
|
} u;
|
||||||
|
|
||||||
|
i16vec2 result(round(clamp(v, -1.0f, 1.0f) * 32767.0f));
|
||||||
|
|
||||||
|
u.in[0] = result[0];
|
||||||
|
u.in[1] = result[1];
|
||||||
|
|
||||||
|
return u.out;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER vec2 unpackSnorm2x16(uint p)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
uint in;
|
||||||
|
i16 out[2];
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in = p;
|
||||||
|
|
||||||
|
return clamp(vec2(u.out[0], u.out[1]) * 3.0518509475997192297128208258309e-5f, -1.0f, 1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uint packUnorm4x8(vec4 const & v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
u8 in[4];
|
||||||
|
uint out;
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u8vec4 result(round(clamp(v, 0.0f, 1.0f) * 255.0f));
|
||||||
|
|
||||||
|
u.in[0] = result[0];
|
||||||
|
u.in[1] = result[1];
|
||||||
|
u.in[2] = result[2];
|
||||||
|
u.in[3] = result[3];
|
||||||
|
|
||||||
|
return u.out;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER vec4 unpackUnorm4x8(uint p)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
uint in;
|
||||||
|
u8 out[4];
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in = p;
|
||||||
|
|
||||||
|
return vec4(u.out[0], u.out[1], u.out[2], u.out[3]) * 0.0039215686274509803921568627451f;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uint packSnorm4x8(vec4 const & v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
i8 in[4];
|
||||||
|
uint out;
|
||||||
|
} u;
|
||||||
|
|
||||||
|
i8vec4 result(round(clamp(v, -1.0f, 1.0f) * 127.0f));
|
||||||
|
|
||||||
|
u.in[0] = result[0];
|
||||||
|
u.in[1] = result[1];
|
||||||
|
u.in[2] = result[2];
|
||||||
|
u.in[3] = result[3];
|
||||||
|
|
||||||
|
return u.out;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER glm::vec4 unpackSnorm4x8(uint p)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
uint in;
|
||||||
|
i8 out[4];
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in = p;
|
||||||
|
|
||||||
|
return clamp(vec4(u.out[0], u.out[1], u.out[2], u.out[3]) * 0.0078740157480315f, -1.0f, 1.0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER double packDouble2x32(uvec2 const & v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
uint in[2];
|
||||||
|
double out;
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in[0] = v[0];
|
||||||
|
u.in[1] = v[1];
|
||||||
|
|
||||||
|
return u.out;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uvec2 unpackDouble2x32(double v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
double in;
|
||||||
|
uint out[2];
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in = v;
|
||||||
|
|
||||||
|
return uvec2(u.out[0], u.out[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uint packHalf2x16(vec2 const & v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
i16 in[2];
|
||||||
|
uint out;
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in[0] = detail::toFloat16(v.x);
|
||||||
|
u.in[1] = detail::toFloat16(v.y);
|
||||||
|
|
||||||
|
return u.out;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER vec2 unpackHalf2x16(uint v)
|
||||||
|
{
|
||||||
|
union
|
||||||
|
{
|
||||||
|
uint in;
|
||||||
|
i16 out[2];
|
||||||
|
} u;
|
||||||
|
|
||||||
|
u.in = v;
|
||||||
|
|
||||||
|
return vec2(
|
||||||
|
detail::toFloat32(u.out[0]),
|
||||||
|
detail::toFloat32(u.out[1]));
|
||||||
|
}
|
||||||
|
}//namespace glm
|
||||||
|
|
205
extern/glm-0.9.7.5/include/glm/detail/func_trigonometric.hpp
vendored
Normal file
205
extern/glm-0.9.7.5/include/glm/detail/func_trigonometric.hpp
vendored
Normal file
@ -0,0 +1,205 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_trigonometric.hpp
|
||||||
|
/// @date 2008-08-01 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_trigonometric Angle and Trigonometry Functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// Function parameters specified as angle are assumed to be in units of radians.
|
||||||
|
/// In no case will any of these functions result in a divide by zero error. If
|
||||||
|
/// the divisor of a ratio is 0, then results will be undefined.
|
||||||
|
///
|
||||||
|
/// These all operate component-wise. The description is per component.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
#include "precision.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_trigonometric
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Converts degrees to radians and returns the result.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/radians.xml">GLSL radians man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR vecType<T, P> radians(vecType<T, P> const & degrees);
|
||||||
|
|
||||||
|
/// Converts radians to degrees and returns the result.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/degrees.xml">GLSL degrees man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR vecType<T, P> degrees(vecType<T, P> const & radians);
|
||||||
|
|
||||||
|
/// The standard trigonometric sine function.
|
||||||
|
/// The values returned by this function will range from [-1, 1].
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/sin.xml">GLSL sin man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> sin(vecType<T, P> const & angle);
|
||||||
|
|
||||||
|
/// The standard trigonometric cosine function.
|
||||||
|
/// The values returned by this function will range from [-1, 1].
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/cos.xml">GLSL cos man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> cos(vecType<T, P> const & angle);
|
||||||
|
|
||||||
|
/// The standard trigonometric tangent function.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/tan.xml">GLSL tan man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> tan(vecType<T, P> const & angle);
|
||||||
|
|
||||||
|
/// Arc sine. Returns an angle whose sine is x.
|
||||||
|
/// The range of values returned by this function is [-PI/2, PI/2].
|
||||||
|
/// Results are undefined if |x| > 1.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/asin.xml">GLSL asin man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> asin(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Arc cosine. Returns an angle whose sine is x.
|
||||||
|
/// The range of values returned by this function is [0, PI].
|
||||||
|
/// Results are undefined if |x| > 1.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/acos.xml">GLSL acos man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> acos(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Arc tangent. Returns an angle whose tangent is y/x.
|
||||||
|
/// The signs of x and y are used to determine what
|
||||||
|
/// quadrant the angle is in. The range of values returned
|
||||||
|
/// by this function is [-PI, PI]. Results are undefined
|
||||||
|
/// if x and y are both 0.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/atan.xml">GLSL atan man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> atan(vecType<T, P> const & y, vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Arc tangent. Returns an angle whose tangent is y_over_x.
|
||||||
|
/// The range of values returned by this function is [-PI/2, PI/2].
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/atan.xml">GLSL atan man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> atan(vecType<T, P> const & y_over_x);
|
||||||
|
|
||||||
|
/// Returns the hyperbolic sine function, (exp(x) - exp(-x)) / 2
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/sinh.xml">GLSL sinh man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> sinh(vecType<T, P> const & angle);
|
||||||
|
|
||||||
|
/// Returns the hyperbolic cosine function, (exp(x) + exp(-x)) / 2
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/cosh.xml">GLSL cosh man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> cosh(vecType<T, P> const & angle);
|
||||||
|
|
||||||
|
/// Returns the hyperbolic tangent function, sinh(angle) / cosh(angle)
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/tanh.xml">GLSL tanh man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> tanh(vecType<T, P> const & angle);
|
||||||
|
|
||||||
|
/// Arc hyperbolic sine; returns the inverse of sinh.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/asinh.xml">GLSL asinh man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> asinh(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Arc hyperbolic cosine; returns the non-negative inverse
|
||||||
|
/// of cosh. Results are undefined if x < 1.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/acosh.xml">GLSL acosh man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> acosh(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// Arc hyperbolic tangent; returns the inverse of tanh.
|
||||||
|
/// Results are undefined if abs(x) >= 1.
|
||||||
|
///
|
||||||
|
/// @tparam genType Floating-point scalar or vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/atanh.xml">GLSL atanh man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.1 Angle and Trigonometry Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<T, P> atanh(vecType<T, P> const & x);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_trigonometric.inl"
|
224
extern/glm-0.9.7.5/include/glm/detail/func_trigonometric.inl
vendored
Normal file
224
extern/glm-0.9.7.5/include/glm/detail/func_trigonometric.inl
vendored
Normal file
@ -0,0 +1,224 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_trigonometric.inl
|
||||||
|
/// @date 2008-08-03 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "_vectorize.hpp"
|
||||||
|
#include <cmath>
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
// radians
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR genType radians(genType degrees)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'radians' only accept floating-point input");
|
||||||
|
|
||||||
|
return degrees * static_cast<genType>(0.01745329251994329576923690768489);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vecType<T, P> radians(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(radians, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// degrees
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR genType degrees(genType radians)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'degrees' only accept floating-point input");
|
||||||
|
|
||||||
|
return radians * static_cast<genType>(57.295779513082320876798154814105);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR vecType<T, P> degrees(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(degrees, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// sin
|
||||||
|
using ::std::sin;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> sin(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(sin, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// cos
|
||||||
|
using std::cos;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> cos(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(cos, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// tan
|
||||||
|
using std::tan;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> tan(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(tan, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// asin
|
||||||
|
using std::asin;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> asin(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(asin, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// acos
|
||||||
|
using std::acos;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> acos(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(acos, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// atan
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType atan(genType const & y, genType const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'atan' only accept floating-point input");
|
||||||
|
|
||||||
|
return ::std::atan2(y, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> atan(vecType<T, P> const & a, vecType<T, P> const & b)
|
||||||
|
{
|
||||||
|
return detail::functor2<T, P, vecType>::call(atan2, a, b);
|
||||||
|
}
|
||||||
|
|
||||||
|
using std::atan;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> atan(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(atan, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// sinh
|
||||||
|
using std::sinh;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> sinh(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(sinh, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// cosh
|
||||||
|
using std::cosh;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> cosh(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(cosh, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// tanh
|
||||||
|
using std::tanh;
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> tanh(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(tanh, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// asinh
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using std::asinh;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType asinh(genType const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asinh' only accept floating-point input");
|
||||||
|
|
||||||
|
return (x < static_cast<genType>(0) ? static_cast<genType>(-1) : (x > static_cast<genType>(0) ? static_cast<genType>(1) : static_cast<genType>(0))) * log(std::abs(x) + sqrt(static_cast<genType>(1) + x * x));
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> asinh(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(asinh, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// acosh
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using std::acosh;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType acosh(genType const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acosh' only accept floating-point input");
|
||||||
|
|
||||||
|
if(x < static_cast<genType>(1))
|
||||||
|
return static_cast<genType>(0);
|
||||||
|
return log(x + sqrt(x * x - static_cast<genType>(1)));
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> acosh(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(acosh, v);
|
||||||
|
}
|
||||||
|
|
||||||
|
// atanh
|
||||||
|
# if GLM_HAS_CXX11_STL
|
||||||
|
using std::atanh;
|
||||||
|
# else
|
||||||
|
template <typename genType>
|
||||||
|
GLM_FUNC_QUALIFIER genType atanh(genType const & x)
|
||||||
|
{
|
||||||
|
GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'atanh' only accept floating-point input");
|
||||||
|
|
||||||
|
if(std::abs(x) >= static_cast<genType>(1))
|
||||||
|
return 0;
|
||||||
|
return static_cast<genType>(0.5) * log((static_cast<genType>(1) + x) / (static_cast<genType>(1) - x));
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<T, P> atanh(vecType<T, P> const & v)
|
||||||
|
{
|
||||||
|
return detail::functor1<T, T, P, vecType>::call(atanh, v);
|
||||||
|
}
|
||||||
|
}//namespace glm
|
140
extern/glm-0.9.7.5/include/glm/detail/func_vector_relational.hpp
vendored
Normal file
140
extern/glm-0.9.7.5/include/glm/detail/func_vector_relational.hpp
vendored
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_vector_relational.hpp
|
||||||
|
/// @date 2008-08-03 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
///
|
||||||
|
/// @defgroup core_func_vector_relational Vector Relational Functions
|
||||||
|
/// @ingroup core
|
||||||
|
///
|
||||||
|
/// Relational and equality operators (<, <=, >, >=, ==, !=) are defined to
|
||||||
|
/// operate on scalars and produce scalar Boolean results. For vector results,
|
||||||
|
/// use the following built-in functions.
|
||||||
|
///
|
||||||
|
/// In all cases, the sizes of all the input and return vectors for any particular
|
||||||
|
/// call must match.
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "precision.hpp"
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
/// @addtogroup core_func_vector_relational
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Returns the component-wise comparison result of x < y.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Floating-point or integer vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/lessThan.xml">GLSL lessThan man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> lessThan(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the component-wise comparison of result x <= y.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Floating-point or integer vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/lessThanEqual.xml">GLSL lessThanEqual man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> lessThanEqual(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the component-wise comparison of result x > y.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Floating-point or integer vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/greaterThan.xml">GLSL greaterThan man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> greaterThan(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the component-wise comparison of result x >= y.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Floating-point or integer vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/greaterThanEqual.xml">GLSL greaterThanEqual man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> greaterThanEqual(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the component-wise comparison of result x == y.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Floating-point, integer or boolean vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/equal.xml">GLSL equal man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> equal(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns the component-wise comparison of result x != y.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Floating-point, integer or boolean vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/notEqual.xml">GLSL notEqual man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> notEqual(vecType<T, P> const & x, vecType<T, P> const & y);
|
||||||
|
|
||||||
|
/// Returns true if any component of x is true.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Boolean vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/any.xml">GLSL any man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL bool any(vecType<bool, P> const & v);
|
||||||
|
|
||||||
|
/// Returns true if all components of x are true.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Boolean vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/all.xml">GLSL all man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL bool all(vecType<bool, P> const & v);
|
||||||
|
|
||||||
|
/// Returns the component-wise logical complement of x.
|
||||||
|
/// /!\ Because of language incompatibilities between C++ and GLSL, GLM defines the function not but not_ instead.
|
||||||
|
///
|
||||||
|
/// @tparam vecType Boolean vector types.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/not.xml">GLSL not man page</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 8.7 Vector Relational Functions</a>
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_DECL vecType<bool, P> not_(vecType<bool, P> const & v);
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "func_vector_relational.inl"
|
131
extern/glm-0.9.7.5/include/glm/detail/func_vector_relational.inl
vendored
Normal file
131
extern/glm-0.9.7.5/include/glm/detail/func_vector_relational.inl
vendored
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/func_vector_relational.inl
|
||||||
|
/// @date 2008-08-03 / 2011-09-09
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> lessThan(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
assert(detail::component_count(x) == detail::component_count(y));
|
||||||
|
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = x[i] < y[i];
|
||||||
|
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> lessThanEqual(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
assert(detail::component_count(x) == detail::component_count(y));
|
||||||
|
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = x[i] <= y[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> greaterThan(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
assert(detail::component_count(x) == detail::component_count(y));
|
||||||
|
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = x[i] > y[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> greaterThanEqual(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
assert(detail::component_count(x) == detail::component_count(y));
|
||||||
|
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = x[i] >= y[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> equal(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
assert(detail::component_count(x) == detail::component_count(y));
|
||||||
|
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = x[i] == y[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> notEqual(vecType<T, P> const & x, vecType<T, P> const & y)
|
||||||
|
{
|
||||||
|
assert(detail::component_count(x) == detail::component_count(y));
|
||||||
|
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(x); ++i)
|
||||||
|
Result[i] = x[i] != y[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER bool any(vecType<bool, P> const & v)
|
||||||
|
{
|
||||||
|
bool Result = false;
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(v); ++i)
|
||||||
|
Result = Result || v[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER bool all(vecType<bool, P> const & v)
|
||||||
|
{
|
||||||
|
bool Result = true;
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(v); ++i)
|
||||||
|
Result = Result && v[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <precision P, template <typename, precision> class vecType>
|
||||||
|
GLM_FUNC_QUALIFIER vecType<bool, P> not_(vecType<bool, P> const & v)
|
||||||
|
{
|
||||||
|
vecType<bool, P> Result(uninitialize);
|
||||||
|
for(detail::component_count_t i = 0; i < detail::component_count(v); ++i)
|
||||||
|
Result[i] = !v[i];
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
}//namespace glm
|
||||||
|
|
286
extern/glm-0.9.7.5/include/glm/detail/glm.cpp
vendored
Normal file
286
extern/glm-0.9.7.5/include/glm/detail/glm.cpp
vendored
Normal file
@ -0,0 +1,286 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/glm.cpp
|
||||||
|
/// @date 2013-04-22 / 2013-04-22
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include <glm/glm.hpp>
|
||||||
|
#include <glm/gtc/quaternion.hpp>
|
||||||
|
#include <glm/gtx/dual_quaternion.hpp>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
// tvec1 type explicit instantiation
|
||||||
|
template struct tvec1<uint8, lowp>;
|
||||||
|
template struct tvec1<uint16, lowp>;
|
||||||
|
template struct tvec1<uint32, lowp>;
|
||||||
|
template struct tvec1<uint64, lowp>;
|
||||||
|
template struct tvec1<int8, lowp>;
|
||||||
|
template struct tvec1<int16, lowp>;
|
||||||
|
template struct tvec1<int32, lowp>;
|
||||||
|
template struct tvec1<int64, lowp>;
|
||||||
|
template struct tvec1<float32, lowp>;
|
||||||
|
template struct tvec1<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tvec1<uint8, mediump>;
|
||||||
|
template struct tvec1<uint16, mediump>;
|
||||||
|
template struct tvec1<uint32, mediump>;
|
||||||
|
template struct tvec1<uint64, mediump>;
|
||||||
|
template struct tvec1<int8, mediump>;
|
||||||
|
template struct tvec1<int16, mediump>;
|
||||||
|
template struct tvec1<int32, mediump>;
|
||||||
|
template struct tvec1<int64, mediump>;
|
||||||
|
template struct tvec1<float32, mediump>;
|
||||||
|
template struct tvec1<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tvec1<uint8, highp>;
|
||||||
|
template struct tvec1<uint16, highp>;
|
||||||
|
template struct tvec1<uint32, highp>;
|
||||||
|
template struct tvec1<uint64, highp>;
|
||||||
|
template struct tvec1<int8, highp>;
|
||||||
|
template struct tvec1<int16, highp>;
|
||||||
|
template struct tvec1<int32, highp>;
|
||||||
|
template struct tvec1<int64, highp>;
|
||||||
|
template struct tvec1<float32, highp>;
|
||||||
|
template struct tvec1<float64, highp>;
|
||||||
|
|
||||||
|
// tvec2 type explicit instantiation
|
||||||
|
template struct tvec2<uint8, lowp>;
|
||||||
|
template struct tvec2<uint16, lowp>;
|
||||||
|
template struct tvec2<uint32, lowp>;
|
||||||
|
template struct tvec2<uint64, lowp>;
|
||||||
|
template struct tvec2<int8, lowp>;
|
||||||
|
template struct tvec2<int16, lowp>;
|
||||||
|
template struct tvec2<int32, lowp>;
|
||||||
|
template struct tvec2<int64, lowp>;
|
||||||
|
template struct tvec2<float32, lowp>;
|
||||||
|
template struct tvec2<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tvec2<uint8, mediump>;
|
||||||
|
template struct tvec2<uint16, mediump>;
|
||||||
|
template struct tvec2<uint32, mediump>;
|
||||||
|
template struct tvec2<uint64, mediump>;
|
||||||
|
template struct tvec2<int8, mediump>;
|
||||||
|
template struct tvec2<int16, mediump>;
|
||||||
|
template struct tvec2<int32, mediump>;
|
||||||
|
template struct tvec2<int64, mediump>;
|
||||||
|
template struct tvec2<float32, mediump>;
|
||||||
|
template struct tvec2<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tvec2<uint8, highp>;
|
||||||
|
template struct tvec2<uint16, highp>;
|
||||||
|
template struct tvec2<uint32, highp>;
|
||||||
|
template struct tvec2<uint64, highp>;
|
||||||
|
template struct tvec2<int8, highp>;
|
||||||
|
template struct tvec2<int16, highp>;
|
||||||
|
template struct tvec2<int32, highp>;
|
||||||
|
template struct tvec2<int64, highp>;
|
||||||
|
template struct tvec2<float32, highp>;
|
||||||
|
template struct tvec2<float64, highp>;
|
||||||
|
|
||||||
|
// tvec3 type explicit instantiation
|
||||||
|
template struct tvec3<uint8, lowp>;
|
||||||
|
template struct tvec3<uint16, lowp>;
|
||||||
|
template struct tvec3<uint32, lowp>;
|
||||||
|
template struct tvec3<uint64, lowp>;
|
||||||
|
template struct tvec3<int8, lowp>;
|
||||||
|
template struct tvec3<int16, lowp>;
|
||||||
|
template struct tvec3<int32, lowp>;
|
||||||
|
template struct tvec3<int64, lowp>;
|
||||||
|
template struct tvec3<float32, lowp>;
|
||||||
|
template struct tvec3<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tvec3<uint8, mediump>;
|
||||||
|
template struct tvec3<uint16, mediump>;
|
||||||
|
template struct tvec3<uint32, mediump>;
|
||||||
|
template struct tvec3<uint64, mediump>;
|
||||||
|
template struct tvec3<int8, mediump>;
|
||||||
|
template struct tvec3<int16, mediump>;
|
||||||
|
template struct tvec3<int32, mediump>;
|
||||||
|
template struct tvec3<int64, mediump>;
|
||||||
|
template struct tvec3<float32, mediump>;
|
||||||
|
template struct tvec3<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tvec3<uint8, highp>;
|
||||||
|
template struct tvec3<uint16, highp>;
|
||||||
|
template struct tvec3<uint32, highp>;
|
||||||
|
template struct tvec3<uint64, highp>;
|
||||||
|
template struct tvec3<int8, highp>;
|
||||||
|
template struct tvec3<int16, highp>;
|
||||||
|
template struct tvec3<int32, highp>;
|
||||||
|
template struct tvec3<int64, highp>;
|
||||||
|
template struct tvec3<float32, highp>;
|
||||||
|
template struct tvec3<float64, highp>;
|
||||||
|
|
||||||
|
// tvec4 type explicit instantiation
|
||||||
|
template struct tvec4<uint8, lowp>;
|
||||||
|
template struct tvec4<uint16, lowp>;
|
||||||
|
template struct tvec4<uint32, lowp>;
|
||||||
|
template struct tvec4<uint64, lowp>;
|
||||||
|
template struct tvec4<int8, lowp>;
|
||||||
|
template struct tvec4<int16, lowp>;
|
||||||
|
template struct tvec4<int32, lowp>;
|
||||||
|
template struct tvec4<int64, lowp>;
|
||||||
|
template struct tvec4<float32, lowp>;
|
||||||
|
template struct tvec4<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tvec4<uint8, mediump>;
|
||||||
|
template struct tvec4<uint16, mediump>;
|
||||||
|
template struct tvec4<uint32, mediump>;
|
||||||
|
template struct tvec4<uint64, mediump>;
|
||||||
|
template struct tvec4<int8, mediump>;
|
||||||
|
template struct tvec4<int16, mediump>;
|
||||||
|
template struct tvec4<int32, mediump>;
|
||||||
|
template struct tvec4<int64, mediump>;
|
||||||
|
template struct tvec4<float32, mediump>;
|
||||||
|
template struct tvec4<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tvec4<uint8, highp>;
|
||||||
|
template struct tvec4<uint16, highp>;
|
||||||
|
template struct tvec4<uint32, highp>;
|
||||||
|
template struct tvec4<uint64, highp>;
|
||||||
|
template struct tvec4<int8, highp>;
|
||||||
|
template struct tvec4<int16, highp>;
|
||||||
|
template struct tvec4<int32, highp>;
|
||||||
|
template struct tvec4<int64, highp>;
|
||||||
|
template struct tvec4<float32, highp>;
|
||||||
|
template struct tvec4<float64, highp>;
|
||||||
|
|
||||||
|
// tmat2x2 type explicit instantiation
|
||||||
|
template struct tmat2x2<float32, lowp>;
|
||||||
|
template struct tmat2x2<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat2x2<float32, mediump>;
|
||||||
|
template struct tmat2x2<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat2x2<float32, highp>;
|
||||||
|
template struct tmat2x2<float64, highp>;
|
||||||
|
|
||||||
|
// tmat2x3 type explicit instantiation
|
||||||
|
template struct tmat2x3<float32, lowp>;
|
||||||
|
template struct tmat2x3<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat2x3<float32, mediump>;
|
||||||
|
template struct tmat2x3<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat2x3<float32, highp>;
|
||||||
|
template struct tmat2x3<float64, highp>;
|
||||||
|
|
||||||
|
// tmat2x4 type explicit instantiation
|
||||||
|
template struct tmat2x4<float32, lowp>;
|
||||||
|
template struct tmat2x4<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat2x4<float32, mediump>;
|
||||||
|
template struct tmat2x4<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat2x4<float32, highp>;
|
||||||
|
template struct tmat2x4<float64, highp>;
|
||||||
|
|
||||||
|
// tmat3x2 type explicit instantiation
|
||||||
|
template struct tmat3x2<float32, lowp>;
|
||||||
|
template struct tmat3x2<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat3x2<float32, mediump>;
|
||||||
|
template struct tmat3x2<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat3x2<float32, highp>;
|
||||||
|
template struct tmat3x2<float64, highp>;
|
||||||
|
|
||||||
|
// tmat3x3 type explicit instantiation
|
||||||
|
template struct tmat3x3<float32, lowp>;
|
||||||
|
template struct tmat3x3<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat3x3<float32, mediump>;
|
||||||
|
template struct tmat3x3<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat3x3<float32, highp>;
|
||||||
|
template struct tmat3x3<float64, highp>;
|
||||||
|
|
||||||
|
// tmat3x4 type explicit instantiation
|
||||||
|
template struct tmat3x4<float32, lowp>;
|
||||||
|
template struct tmat3x4<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat3x4<float32, mediump>;
|
||||||
|
template struct tmat3x4<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat3x4<float32, highp>;
|
||||||
|
template struct tmat3x4<float64, highp>;
|
||||||
|
|
||||||
|
// tmat4x2 type explicit instantiation
|
||||||
|
template struct tmat4x2<float32, lowp>;
|
||||||
|
template struct tmat4x2<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat4x2<float32, mediump>;
|
||||||
|
template struct tmat4x2<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat4x2<float32, highp>;
|
||||||
|
template struct tmat4x2<float64, highp>;
|
||||||
|
|
||||||
|
// tmat4x3 type explicit instantiation
|
||||||
|
template struct tmat4x3<float32, lowp>;
|
||||||
|
template struct tmat4x3<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat4x3<float32, mediump>;
|
||||||
|
template struct tmat4x3<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat4x3<float32, highp>;
|
||||||
|
template struct tmat4x3<float64, highp>;
|
||||||
|
|
||||||
|
// tmat4x4 type explicit instantiation
|
||||||
|
template struct tmat4x4<float32, lowp>;
|
||||||
|
template struct tmat4x4<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tmat4x4<float32, mediump>;
|
||||||
|
template struct tmat4x4<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tmat4x4<float32, highp>;
|
||||||
|
template struct tmat4x4<float64, highp>;
|
||||||
|
|
||||||
|
// tquat type explicit instantiation
|
||||||
|
template struct tquat<float32, lowp>;
|
||||||
|
template struct tquat<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tquat<float32, mediump>;
|
||||||
|
template struct tquat<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tquat<float32, highp>;
|
||||||
|
template struct tquat<float64, highp>;
|
||||||
|
|
||||||
|
//tdualquat type explicit instantiation
|
||||||
|
template struct tdualquat<float32, lowp>;
|
||||||
|
template struct tdualquat<float64, lowp>;
|
||||||
|
|
||||||
|
template struct tdualquat<float32, mediump>;
|
||||||
|
template struct tdualquat<float64, mediump>;
|
||||||
|
|
||||||
|
template struct tdualquat<float32, highp>;
|
||||||
|
template struct tdualquat<float64, highp>;
|
||||||
|
|
||||||
|
}//namespace glm
|
||||||
|
|
87
extern/glm-0.9.7.5/include/glm/detail/intrinsic_common.hpp
vendored
Normal file
87
extern/glm-0.9.7.5/include/glm/detail/intrinsic_common.hpp
vendored
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_common.hpp
|
||||||
|
/// @date 2009-05-11 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
__m128 sse_abs_ps(__m128 x);
|
||||||
|
|
||||||
|
__m128 sse_sgn_ps(__m128 x);
|
||||||
|
|
||||||
|
//floor
|
||||||
|
__m128 sse_flr_ps(__m128 v);
|
||||||
|
|
||||||
|
//trunc
|
||||||
|
__m128 sse_trc_ps(__m128 v);
|
||||||
|
|
||||||
|
//round
|
||||||
|
__m128 sse_nd_ps(__m128 v);
|
||||||
|
|
||||||
|
//roundEven
|
||||||
|
__m128 sse_rde_ps(__m128 v);
|
||||||
|
|
||||||
|
__m128 sse_rnd_ps(__m128 x);
|
||||||
|
|
||||||
|
__m128 sse_ceil_ps(__m128 v);
|
||||||
|
|
||||||
|
__m128 sse_frc_ps(__m128 x);
|
||||||
|
|
||||||
|
__m128 sse_mod_ps(__m128 x, __m128 y);
|
||||||
|
|
||||||
|
__m128 sse_modf_ps(__m128 x, __m128i & i);
|
||||||
|
|
||||||
|
//GLM_FUNC_QUALIFIER __m128 sse_min_ps(__m128 x, __m128 y)
|
||||||
|
|
||||||
|
//GLM_FUNC_QUALIFIER __m128 sse_max_ps(__m128 x, __m128 y)
|
||||||
|
|
||||||
|
__m128 sse_clp_ps(__m128 v, __m128 minVal, __m128 maxVal);
|
||||||
|
|
||||||
|
__m128 sse_mix_ps(__m128 v1, __m128 v2, __m128 a);
|
||||||
|
|
||||||
|
__m128 sse_stp_ps(__m128 edge, __m128 x);
|
||||||
|
|
||||||
|
__m128 sse_ssp_ps(__m128 edge0, __m128 edge1, __m128 x);
|
||||||
|
|
||||||
|
__m128 sse_nan_ps(__m128 x);
|
||||||
|
|
||||||
|
__m128 sse_inf_ps(__m128 x);
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "intrinsic_common.inl"
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
313
extern/glm-0.9.7.5/include/glm/detail/intrinsic_common.inl
vendored
Normal file
313
extern/glm-0.9.7.5/include/glm/detail/intrinsic_common.inl
vendored
Normal file
@ -0,0 +1,313 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_common.inl
|
||||||
|
/// @date 2009-05-08 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail{
|
||||||
|
|
||||||
|
#if(GLM_COMPILER & GLM_COMPILER_VC)
|
||||||
|
#pragma warning(push)
|
||||||
|
#pragma warning(disable : 4510 4512 4610)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
union ieee754_QNAN
|
||||||
|
{
|
||||||
|
const float f;
|
||||||
|
struct i
|
||||||
|
{
|
||||||
|
const unsigned int mantissa:23, exp:8, sign:1;
|
||||||
|
};
|
||||||
|
|
||||||
|
ieee754_QNAN() : f(0.0)/*, mantissa(0x7FFFFF), exp(0xFF), sign(0x0)*/ {}
|
||||||
|
};
|
||||||
|
|
||||||
|
#if(GLM_COMPILER & GLM_COMPILER_VC)
|
||||||
|
#pragma warning(pop)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED zero = _mm_setzero_ps();
|
||||||
|
static const __m128 GLM_VAR_USED one = _mm_set_ps1(1.0f);
|
||||||
|
static const __m128 GLM_VAR_USED minus_one = _mm_set_ps1(-1.0f);
|
||||||
|
static const __m128 GLM_VAR_USED two = _mm_set_ps1(2.0f);
|
||||||
|
static const __m128 GLM_VAR_USED three = _mm_set_ps1(3.0f);
|
||||||
|
static const __m128 GLM_VAR_USED pi = _mm_set_ps1(3.1415926535897932384626433832795f);
|
||||||
|
static const __m128 GLM_VAR_USED hundred_eighty = _mm_set_ps1(180.f);
|
||||||
|
static const __m128 GLM_VAR_USED pi_over_hundred_eighty = _mm_set_ps1(0.017453292519943295769236907684886f);
|
||||||
|
static const __m128 GLM_VAR_USED hundred_eighty_over_pi = _mm_set_ps1(57.295779513082320876798154814105f);
|
||||||
|
|
||||||
|
static const ieee754_QNAN absMask;
|
||||||
|
static const __m128 GLM_VAR_USED abs4Mask = _mm_set_ps1(absMask.f);
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_sign_mask = _mm_castsi128_ps(_mm_set1_epi32(static_cast<int>(0x80000000)));
|
||||||
|
//static const __m128 GLM_VAR_USED _epi32_inv_sign_mask = _mm_castsi128_ps(_mm_set1_epi32(0x7FFFFFFF));
|
||||||
|
//static const __m128 GLM_VAR_USED _epi32_mant_mask = _mm_castsi128_ps(_mm_set1_epi32(0x7F800000));
|
||||||
|
//static const __m128 GLM_VAR_USED _epi32_inv_mant_mask = _mm_castsi128_ps(_mm_set1_epi32(0x807FFFFF));
|
||||||
|
//static const __m128 GLM_VAR_USED _epi32_min_norm_pos = _mm_castsi128_ps(_mm_set1_epi32(0x00800000));
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_0 = _mm_set_ps1(0);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_1 = _mm_set_ps1(1);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_2 = _mm_set_ps1(2);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_3 = _mm_set_ps1(3);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_4 = _mm_set_ps1(4);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_5 = _mm_set_ps1(5);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_6 = _mm_set_ps1(6);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_7 = _mm_set_ps1(7);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_8 = _mm_set_ps1(8);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_9 = _mm_set_ps1(9);
|
||||||
|
static const __m128 GLM_VAR_USED _epi32_127 = _mm_set_ps1(127);
|
||||||
|
//static const __m128 GLM_VAR_USED _epi32_ninf = _mm_castsi128_ps(_mm_set1_epi32(0xFF800000));
|
||||||
|
//static const __m128 GLM_VAR_USED _epi32_pinf = _mm_castsi128_ps(_mm_set1_epi32(0x7F800000));
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED _ps_1_3 = _mm_set_ps1(0.33333333333333333333333333333333f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_0p5 = _mm_set_ps1(0.5f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_1 = _mm_set_ps1(1.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_m1 = _mm_set_ps1(-1.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_2 = _mm_set_ps1(2.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_3 = _mm_set_ps1(3.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_127 = _mm_set_ps1(127.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_255 = _mm_set_ps1(255.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_2pow23 = _mm_set_ps1(8388608.0f);
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED _ps_1_0_0_0 = _mm_set_ps(1.0f, 0.0f, 0.0f, 0.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_0_1_0_0 = _mm_set_ps(0.0f, 1.0f, 0.0f, 0.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_0_0_1_0 = _mm_set_ps(0.0f, 0.0f, 1.0f, 0.0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_0_0_0_1 = _mm_set_ps(0.0f, 0.0f, 0.0f, 1.0f);
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED _ps_pi = _mm_set_ps1(3.1415926535897932384626433832795f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_pi2 = _mm_set_ps1(6.283185307179586476925286766560f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_2_pi = _mm_set_ps1(0.63661977236758134307553505349006f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_pi_2 = _mm_set_ps1(1.5707963267948966192313216916398f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_4_pi = _mm_set_ps1(1.2732395447351626861510701069801f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_pi_4 = _mm_set_ps1(0.78539816339744830961566084581988f);
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED _ps_sincos_p0 = _mm_set_ps1(0.15707963267948963959e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_sincos_p1 = _mm_set_ps1(-0.64596409750621907082e0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_sincos_p2 = _mm_set_ps1(0.7969262624561800806e-1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_sincos_p3 = _mm_set_ps1(-0.468175413106023168e-2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_p0 = _mm_set_ps1(-1.79565251976484877988e7f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_p1 = _mm_set_ps1(1.15351664838587416140e6f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_p2 = _mm_set_ps1(-1.30936939181383777646e4f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_q0 = _mm_set_ps1(-5.38695755929454629881e7f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_q1 = _mm_set_ps1(2.50083801823357915839e7f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_q2 = _mm_set_ps1(-1.32089234440210967447e6f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_q3 = _mm_set_ps1(1.36812963470692954678e4f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_tan_poleval = _mm_set_ps1(3.68935e19f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_t0 = _mm_set_ps1(-0.91646118527267623468e-1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_t1 = _mm_set_ps1(-0.13956945682312098640e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_t2 = _mm_set_ps1(-0.94393926122725531747e2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_t3 = _mm_set_ps1(0.12888383034157279340e2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_s0 = _mm_set_ps1(0.12797564625607904396e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_s1 = _mm_set_ps1(0.21972168858277355914e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_s2 = _mm_set_ps1(0.68193064729268275701e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_atan_s3 = _mm_set_ps1(0.28205206687035841409e2f);
|
||||||
|
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_hi = _mm_set_ps1(88.3762626647949f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_lo = _mm_set_ps1(-88.3762626647949f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_rln2 = _mm_set_ps1(1.4426950408889634073599f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_p0 = _mm_set_ps1(1.26177193074810590878e-4f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_p1 = _mm_set_ps1(3.02994407707441961300e-2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_q0 = _mm_set_ps1(3.00198505138664455042e-6f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_q1 = _mm_set_ps1(2.52448340349684104192e-3f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_q2 = _mm_set_ps1(2.27265548208155028766e-1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_q3 = _mm_set_ps1(2.00000000000000000009e0f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_c1 = _mm_set_ps1(6.93145751953125e-1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp_c2 = _mm_set_ps1(1.42860682030941723212e-6f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_hi = _mm_set_ps1(127.4999961853f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_lo = _mm_set_ps1(-127.4999961853f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_p0 = _mm_set_ps1(2.30933477057345225087e-2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_p1 = _mm_set_ps1(2.02020656693165307700e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_p2 = _mm_set_ps1(1.51390680115615096133e3f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_q0 = _mm_set_ps1(2.33184211722314911771e2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_exp2_q1 = _mm_set_ps1(4.36821166879210612817e3f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_p0 = _mm_set_ps1(-7.89580278884799154124e-1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_p1 = _mm_set_ps1(1.63866645699558079767e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_p2 = _mm_set_ps1(-6.41409952958715622951e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_q0 = _mm_set_ps1(-3.56722798256324312549e1f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_q1 = _mm_set_ps1(3.12093766372244180303e2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_q2 = _mm_set_ps1(-7.69691943550460008604e2f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log_c0 = _mm_set_ps1(0.693147180559945f);
|
||||||
|
static const __m128 GLM_VAR_USED _ps_log2_c0 = _mm_set_ps1(1.44269504088896340735992f);
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_abs_ps(__m128 x)
|
||||||
|
{
|
||||||
|
return _mm_and_ps(glm::detail::abs4Mask, x);
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_sgn_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 Neg = _mm_set1_ps(-1.0f);
|
||||||
|
__m128 Pos = _mm_set1_ps(1.0f);
|
||||||
|
|
||||||
|
__m128 Cmp0 = _mm_cmplt_ps(x, zero);
|
||||||
|
__m128 Cmp1 = _mm_cmpgt_ps(x, zero);
|
||||||
|
|
||||||
|
__m128 And0 = _mm_and_ps(Cmp0, Neg);
|
||||||
|
__m128 And1 = _mm_and_ps(Cmp1, Pos);
|
||||||
|
|
||||||
|
return _mm_or_ps(And0, And1);
|
||||||
|
}
|
||||||
|
|
||||||
|
//floor
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_flr_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 rnd0 = sse_rnd_ps(x);
|
||||||
|
__m128 cmp0 = _mm_cmplt_ps(x, rnd0);
|
||||||
|
__m128 and0 = _mm_and_ps(cmp0, glm::detail::_ps_1);
|
||||||
|
__m128 sub0 = _mm_sub_ps(rnd0, and0);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//trunc
|
||||||
|
/*
|
||||||
|
GLM_FUNC_QUALIFIER __m128 _mm_trc_ps(__m128 v)
|
||||||
|
{
|
||||||
|
return __m128();
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
//round
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_rnd_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 and0 = _mm_and_ps(glm::detail::_epi32_sign_mask, x);
|
||||||
|
__m128 or0 = _mm_or_ps(and0, glm::detail::_ps_2pow23);
|
||||||
|
__m128 add0 = _mm_add_ps(x, or0);
|
||||||
|
__m128 sub0 = _mm_sub_ps(add0, or0);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//roundEven
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_rde_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 and0 = _mm_and_ps(glm::detail::_epi32_sign_mask, x);
|
||||||
|
__m128 or0 = _mm_or_ps(and0, glm::detail::_ps_2pow23);
|
||||||
|
__m128 add0 = _mm_add_ps(x, or0);
|
||||||
|
__m128 sub0 = _mm_sub_ps(add0, or0);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_ceil_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 rnd0 = sse_rnd_ps(x);
|
||||||
|
__m128 cmp0 = _mm_cmpgt_ps(x, rnd0);
|
||||||
|
__m128 and0 = _mm_and_ps(cmp0, glm::detail::_ps_1);
|
||||||
|
__m128 add0 = _mm_add_ps(rnd0, and0);
|
||||||
|
return add0;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_frc_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 flr0 = sse_flr_ps(x);
|
||||||
|
__m128 sub0 = _mm_sub_ps(x, flr0);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_mod_ps(__m128 x, __m128 y)
|
||||||
|
{
|
||||||
|
__m128 div0 = _mm_div_ps(x, y);
|
||||||
|
__m128 flr0 = sse_flr_ps(div0);
|
||||||
|
__m128 mul0 = _mm_mul_ps(y, flr0);
|
||||||
|
__m128 sub0 = _mm_sub_ps(x, mul0);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// TODO
|
||||||
|
/*
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_modf_ps(__m128 x, __m128i & i)
|
||||||
|
{
|
||||||
|
__m128 empty;
|
||||||
|
return empty;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
//GLM_FUNC_QUALIFIER __m128 _mm_min_ps(__m128 x, __m128 y)
|
||||||
|
|
||||||
|
//GLM_FUNC_QUALIFIER __m128 _mm_max_ps(__m128 x, __m128 y)
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_clp_ps(__m128 v, __m128 minVal, __m128 maxVal)
|
||||||
|
{
|
||||||
|
__m128 min0 = _mm_min_ps(v, maxVal);
|
||||||
|
__m128 max0 = _mm_max_ps(min0, minVal);
|
||||||
|
return max0;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_mix_ps(__m128 v1, __m128 v2, __m128 a)
|
||||||
|
{
|
||||||
|
__m128 sub0 = _mm_sub_ps(glm::detail::one, a);
|
||||||
|
__m128 mul0 = _mm_mul_ps(v1, sub0);
|
||||||
|
__m128 mul1 = _mm_mul_ps(v2, a);
|
||||||
|
__m128 add0 = _mm_add_ps(mul0, mul1);
|
||||||
|
return add0;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_stp_ps(__m128 edge, __m128 x)
|
||||||
|
{
|
||||||
|
__m128 cmp = _mm_cmple_ps(x, edge);
|
||||||
|
if(_mm_movemask_ps(cmp) == 0)
|
||||||
|
return glm::detail::one;
|
||||||
|
else
|
||||||
|
return glm::detail::zero;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_ssp_ps(__m128 edge0, __m128 edge1, __m128 x)
|
||||||
|
{
|
||||||
|
__m128 sub0 = _mm_sub_ps(x, edge0);
|
||||||
|
__m128 sub1 = _mm_sub_ps(edge1, edge0);
|
||||||
|
__m128 div0 = _mm_sub_ps(sub0, sub1);
|
||||||
|
__m128 clp0 = sse_clp_ps(div0, glm::detail::zero, glm::detail::one);
|
||||||
|
__m128 mul0 = _mm_mul_ps(glm::detail::two, clp0);
|
||||||
|
__m128 sub2 = _mm_sub_ps(glm::detail::three, mul0);
|
||||||
|
__m128 mul1 = _mm_mul_ps(clp0, clp0);
|
||||||
|
__m128 mul2 = _mm_mul_ps(mul1, sub2);
|
||||||
|
return mul2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// \todo
|
||||||
|
//GLM_FUNC_QUALIFIER __m128 sse_nan_ps(__m128 x)
|
||||||
|
//{
|
||||||
|
// __m128 empty;
|
||||||
|
// return empty;
|
||||||
|
//}
|
||||||
|
|
||||||
|
/// \todo
|
||||||
|
//GLM_FUNC_QUALIFIER __m128 sse_inf_ps(__m128 x)
|
||||||
|
//{
|
||||||
|
// __m128 empty;
|
||||||
|
// return empty;
|
||||||
|
//}
|
||||||
|
|
||||||
|
// SSE scalar reciprocal sqrt using rsqrt op, plus one Newton-Rhaphson iteration
|
||||||
|
// By Elan Ruskin, http://assemblyrequired.crashworks.org/
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_sqrt_wip_ss(__m128 const & x)
|
||||||
|
{
|
||||||
|
__m128 const recip = _mm_rsqrt_ss(x); // "estimate" opcode
|
||||||
|
__m128 const half = _mm_set_ps1(0.5f);
|
||||||
|
__m128 const halfrecip = _mm_mul_ss(half, recip);
|
||||||
|
__m128 const threeminus_xrr = _mm_sub_ss(three, _mm_mul_ss(x, _mm_mul_ss (recip, recip)));
|
||||||
|
return _mm_mul_ss(halfrecip, threeminus_xrr);
|
||||||
|
}
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glms
|
||||||
|
|
77
extern/glm-0.9.7.5/include/glm/detail/intrinsic_exponential.hpp
vendored
Normal file
77
extern/glm-0.9.7.5/include/glm/detail/intrinsic_exponential.hpp
vendored
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_exponential.hpp
|
||||||
|
/// @date 2009-05-11 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_rsqrt_nr_ss(__m128 const x)
|
||||||
|
{
|
||||||
|
__m128 recip = _mm_rsqrt_ss( x ); // "estimate" opcode
|
||||||
|
const static __m128 three = { 3, 3, 3, 3 }; // aligned consts for fast load
|
||||||
|
const static __m128 half = { 0.5,0.5,0.5,0.5 };
|
||||||
|
__m128 halfrecip = _mm_mul_ss( half, recip );
|
||||||
|
__m128 threeminus_xrr = _mm_sub_ss( three, _mm_mul_ss( x, _mm_mul_ss ( recip, recip ) ) );
|
||||||
|
return _mm_mul_ss( halfrecip, threeminus_xrr );
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_normalize_fast_ps( float * RESTRICT vOut, float * RESTRICT vIn )
|
||||||
|
{
|
||||||
|
__m128 x = _mm_load_ss(&vIn[0]);
|
||||||
|
__m128 y = _mm_load_ss(&vIn[1]);
|
||||||
|
__m128 z = _mm_load_ss(&vIn[2]);
|
||||||
|
|
||||||
|
const __m128 l = // compute x*x + y*y + z*z
|
||||||
|
_mm_add_ss(
|
||||||
|
_mm_add_ss( _mm_mul_ss(x,x),
|
||||||
|
_mm_mul_ss(y,y)
|
||||||
|
),
|
||||||
|
_mm_mul_ss( z, z )
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
const __m128 rsqt = _mm_rsqrt_nr_ss( l );
|
||||||
|
_mm_store_ss( &vOut[0] , _mm_mul_ss( rsqt, x ) );
|
||||||
|
_mm_store_ss( &vOut[1] , _mm_mul_ss( rsqt, y ) );
|
||||||
|
_mm_store_ss( &vOut[2] , _mm_mul_ss( rsqt, z ) );
|
||||||
|
|
||||||
|
return _mm_mul_ss( l , rsqt );
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
27
extern/glm-0.9.7.5/include/glm/detail/intrinsic_exponential.inl
vendored
Normal file
27
extern/glm-0.9.7.5/include/glm/detail/intrinsic_exponential.inl
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_exponential.inl
|
||||||
|
/// @date 2011-06-15 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
74
extern/glm-0.9.7.5/include/glm/detail/intrinsic_geometric.hpp
vendored
Normal file
74
extern/glm-0.9.7.5/include/glm/detail/intrinsic_geometric.hpp
vendored
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_geometric.hpp
|
||||||
|
/// @date 2009-05-08 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include "intrinsic_common.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
//length
|
||||||
|
__m128 sse_len_ps(__m128 x);
|
||||||
|
|
||||||
|
//distance
|
||||||
|
__m128 sse_dst_ps(__m128 p0, __m128 p1);
|
||||||
|
|
||||||
|
//dot
|
||||||
|
__m128 sse_dot_ps(__m128 v1, __m128 v2);
|
||||||
|
|
||||||
|
// SSE1
|
||||||
|
__m128 sse_dot_ss(__m128 v1, __m128 v2);
|
||||||
|
|
||||||
|
//cross
|
||||||
|
__m128 sse_xpd_ps(__m128 v1, __m128 v2);
|
||||||
|
|
||||||
|
//normalize
|
||||||
|
__m128 sse_nrm_ps(__m128 v);
|
||||||
|
|
||||||
|
//faceforward
|
||||||
|
__m128 sse_ffd_ps(__m128 N, __m128 I, __m128 Nref);
|
||||||
|
|
||||||
|
//reflect
|
||||||
|
__m128 sse_rfe_ps(__m128 I, __m128 N);
|
||||||
|
|
||||||
|
//refract
|
||||||
|
__m128 sse_rfa_ps(__m128 I, __m128 N, __m128 eta);
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "intrinsic_geometric.inl"
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
147
extern/glm-0.9.7.5/include/glm/detail/intrinsic_geometric.inl
vendored
Normal file
147
extern/glm-0.9.7.5/include/glm/detail/intrinsic_geometric.inl
vendored
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_geometric.inl
|
||||||
|
/// @date 2009-05-08 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail{
|
||||||
|
|
||||||
|
//length
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_len_ps(__m128 x)
|
||||||
|
{
|
||||||
|
__m128 dot0 = sse_dot_ps(x, x);
|
||||||
|
__m128 sqt0 = _mm_sqrt_ps(dot0);
|
||||||
|
return sqt0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//distance
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_dst_ps(__m128 p0, __m128 p1)
|
||||||
|
{
|
||||||
|
__m128 sub0 = _mm_sub_ps(p0, p1);
|
||||||
|
__m128 len0 = sse_len_ps(sub0);
|
||||||
|
return len0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//dot
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_dot_ps(__m128 v1, __m128 v2)
|
||||||
|
{
|
||||||
|
|
||||||
|
# if(GLM_ARCH & GLM_ARCH_AVX)
|
||||||
|
return _mm_dp_ps(v1, v2, 0xff);
|
||||||
|
# else
|
||||||
|
__m128 mul0 = _mm_mul_ps(v1, v2);
|
||||||
|
__m128 swp0 = _mm_shuffle_ps(mul0, mul0, _MM_SHUFFLE(2, 3, 0, 1));
|
||||||
|
__m128 add0 = _mm_add_ps(mul0, swp0);
|
||||||
|
__m128 swp1 = _mm_shuffle_ps(add0, add0, _MM_SHUFFLE(0, 1, 2, 3));
|
||||||
|
__m128 add1 = _mm_add_ps(add0, swp1);
|
||||||
|
return add1;
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
|
||||||
|
// SSE1
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_dot_ss(__m128 v1, __m128 v2)
|
||||||
|
{
|
||||||
|
__m128 mul0 = _mm_mul_ps(v1, v2);
|
||||||
|
__m128 mov0 = _mm_movehl_ps(mul0, mul0);
|
||||||
|
__m128 add0 = _mm_add_ps(mov0, mul0);
|
||||||
|
__m128 swp1 = _mm_shuffle_ps(add0, add0, 1);
|
||||||
|
__m128 add1 = _mm_add_ss(add0, swp1);
|
||||||
|
return add1;
|
||||||
|
}
|
||||||
|
|
||||||
|
//cross
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_xpd_ps(__m128 v1, __m128 v2)
|
||||||
|
{
|
||||||
|
__m128 swp0 = _mm_shuffle_ps(v1, v1, _MM_SHUFFLE(3, 0, 2, 1));
|
||||||
|
__m128 swp1 = _mm_shuffle_ps(v1, v1, _MM_SHUFFLE(3, 1, 0, 2));
|
||||||
|
__m128 swp2 = _mm_shuffle_ps(v2, v2, _MM_SHUFFLE(3, 0, 2, 1));
|
||||||
|
__m128 swp3 = _mm_shuffle_ps(v2, v2, _MM_SHUFFLE(3, 1, 0, 2));
|
||||||
|
__m128 mul0 = _mm_mul_ps(swp0, swp3);
|
||||||
|
__m128 mul1 = _mm_mul_ps(swp1, swp2);
|
||||||
|
__m128 sub0 = _mm_sub_ps(mul0, mul1);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//normalize
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_nrm_ps(__m128 v)
|
||||||
|
{
|
||||||
|
__m128 dot0 = sse_dot_ps(v, v);
|
||||||
|
__m128 isr0 = _mm_rsqrt_ps(dot0);
|
||||||
|
__m128 mul0 = _mm_mul_ps(v, isr0);
|
||||||
|
return mul0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//faceforward
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_ffd_ps(__m128 N, __m128 I, __m128 Nref)
|
||||||
|
{
|
||||||
|
//__m128 dot0 = _mm_dot_ps(v, v);
|
||||||
|
//__m128 neg0 = _mm_neg_ps(N);
|
||||||
|
//__m128 sgn0 = _mm_sgn_ps(dot0);
|
||||||
|
//__m128 mix0 = _mm_mix_ps(N, neg0, sgn0);
|
||||||
|
//return mix0;
|
||||||
|
|
||||||
|
__m128 dot0 = sse_dot_ps(Nref, I);
|
||||||
|
__m128 sgn0 = sse_sgn_ps(dot0);
|
||||||
|
__m128 mul0 = _mm_mul_ps(sgn0, glm::detail::minus_one);
|
||||||
|
__m128 mul1 = _mm_mul_ps(N, mul0);
|
||||||
|
return mul1;
|
||||||
|
}
|
||||||
|
|
||||||
|
//reflect
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_rfe_ps(__m128 I, __m128 N)
|
||||||
|
{
|
||||||
|
__m128 dot0 = sse_dot_ps(N, I);
|
||||||
|
__m128 mul0 = _mm_mul_ps(N, dot0);
|
||||||
|
__m128 mul1 = _mm_mul_ps(mul0, glm::detail::two);
|
||||||
|
__m128 sub0 = _mm_sub_ps(I, mul1);
|
||||||
|
return sub0;
|
||||||
|
}
|
||||||
|
|
||||||
|
//refract
|
||||||
|
GLM_FUNC_QUALIFIER __m128 sse_rfa_ps(__m128 I, __m128 N, __m128 eta)
|
||||||
|
{
|
||||||
|
__m128 dot0 = sse_dot_ps(N, I);
|
||||||
|
__m128 mul0 = _mm_mul_ps(eta, eta);
|
||||||
|
__m128 mul1 = _mm_mul_ps(dot0, dot0);
|
||||||
|
__m128 sub0 = _mm_sub_ps(glm::detail::one, mul0);
|
||||||
|
__m128 sub1 = _mm_sub_ps(glm::detail::one, mul1);
|
||||||
|
__m128 mul2 = _mm_mul_ps(sub0, sub1);
|
||||||
|
|
||||||
|
if(_mm_movemask_ps(_mm_cmplt_ss(mul2, glm::detail::zero)) == 0)
|
||||||
|
return glm::detail::zero;
|
||||||
|
|
||||||
|
__m128 sqt0 = _mm_sqrt_ps(mul2);
|
||||||
|
__m128 mul3 = _mm_mul_ps(eta, dot0);
|
||||||
|
__m128 add0 = _mm_add_ps(mul3, sqt0);
|
||||||
|
__m128 mul4 = _mm_mul_ps(add0, N);
|
||||||
|
__m128 mul5 = _mm_mul_ps(eta, I);
|
||||||
|
__m128 sub2 = _mm_sub_ps(mul5, mul4);
|
||||||
|
|
||||||
|
return sub2;
|
||||||
|
}
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
48
extern/glm-0.9.7.5/include/glm/detail/intrinsic_integer.hpp
vendored
Normal file
48
extern/glm-0.9.7.5/include/glm/detail/intrinsic_integer.hpp
vendored
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2012 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_integer.hpp
|
||||||
|
/// @date 2009-05-11 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "glm/glm.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
__m128i _mm_bit_interleave_si128(__m128i x);
|
||||||
|
__m128i _mm_bit_interleave_si128(__m128i x, __m128i y);
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "intrinsic_integer.inl"
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
139
extern/glm-0.9.7.5/include/glm/detail/intrinsic_integer.inl
vendored
Normal file
139
extern/glm-0.9.7.5/include/glm/detail/intrinsic_integer.inl
vendored
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2012 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_integer.inl
|
||||||
|
/// @date 2009-05-08 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
inline __m128i _mm_bit_interleave_si128(__m128i x)
|
||||||
|
{
|
||||||
|
__m128i const Mask4 = _mm_set1_epi32(0x0000FFFF);
|
||||||
|
__m128i const Mask3 = _mm_set1_epi32(0x00FF00FF);
|
||||||
|
__m128i const Mask2 = _mm_set1_epi32(0x0F0F0F0F);
|
||||||
|
__m128i const Mask1 = _mm_set1_epi32(0x33333333);
|
||||||
|
__m128i const Mask0 = _mm_set1_epi32(0x55555555);
|
||||||
|
|
||||||
|
__m128i Reg1;
|
||||||
|
__m128i Reg2;
|
||||||
|
|
||||||
|
// REG1 = x;
|
||||||
|
// REG2 = y;
|
||||||
|
//Reg1 = _mm_unpacklo_epi64(x, y);
|
||||||
|
Reg1 = x;
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 16) | REG1) & glm::uint64(0x0000FFFF0000FFFF);
|
||||||
|
//REG2 = ((REG2 << 16) | REG2) & glm::uint64(0x0000FFFF0000FFFF);
|
||||||
|
Reg2 = _mm_slli_si128(Reg1, 2);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask4);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 8) | REG1) & glm::uint64(0x00FF00FF00FF00FF);
|
||||||
|
//REG2 = ((REG2 << 8) | REG2) & glm::uint64(0x00FF00FF00FF00FF);
|
||||||
|
Reg2 = _mm_slli_si128(Reg1, 1);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask3);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 4) | REG1) & glm::uint64(0x0F0F0F0F0F0F0F0F);
|
||||||
|
//REG2 = ((REG2 << 4) | REG2) & glm::uint64(0x0F0F0F0F0F0F0F0F);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 4);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask2);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 2) | REG1) & glm::uint64(0x3333333333333333);
|
||||||
|
//REG2 = ((REG2 << 2) | REG2) & glm::uint64(0x3333333333333333);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 2);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask1);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 1) | REG1) & glm::uint64(0x5555555555555555);
|
||||||
|
//REG2 = ((REG2 << 1) | REG2) & glm::uint64(0x5555555555555555);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 1);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask0);
|
||||||
|
|
||||||
|
//return REG1 | (REG2 << 1);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 1);
|
||||||
|
Reg2 = _mm_srli_si128(Reg2, 8);
|
||||||
|
Reg1 = _mm_or_si128(Reg1, Reg2);
|
||||||
|
|
||||||
|
return Reg1;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline __m128i _mm_bit_interleave_si128(__m128i x, __m128i y)
|
||||||
|
{
|
||||||
|
__m128i const Mask4 = _mm_set1_epi32(0x0000FFFF);
|
||||||
|
__m128i const Mask3 = _mm_set1_epi32(0x00FF00FF);
|
||||||
|
__m128i const Mask2 = _mm_set1_epi32(0x0F0F0F0F);
|
||||||
|
__m128i const Mask1 = _mm_set1_epi32(0x33333333);
|
||||||
|
__m128i const Mask0 = _mm_set1_epi32(0x55555555);
|
||||||
|
|
||||||
|
__m128i Reg1;
|
||||||
|
__m128i Reg2;
|
||||||
|
|
||||||
|
// REG1 = x;
|
||||||
|
// REG2 = y;
|
||||||
|
Reg1 = _mm_unpacklo_epi64(x, y);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 16) | REG1) & glm::uint64(0x0000FFFF0000FFFF);
|
||||||
|
//REG2 = ((REG2 << 16) | REG2) & glm::uint64(0x0000FFFF0000FFFF);
|
||||||
|
Reg2 = _mm_slli_si128(Reg1, 2);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask4);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 8) | REG1) & glm::uint64(0x00FF00FF00FF00FF);
|
||||||
|
//REG2 = ((REG2 << 8) | REG2) & glm::uint64(0x00FF00FF00FF00FF);
|
||||||
|
Reg2 = _mm_slli_si128(Reg1, 1);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask3);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 4) | REG1) & glm::uint64(0x0F0F0F0F0F0F0F0F);
|
||||||
|
//REG2 = ((REG2 << 4) | REG2) & glm::uint64(0x0F0F0F0F0F0F0F0F);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 4);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask2);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 2) | REG1) & glm::uint64(0x3333333333333333);
|
||||||
|
//REG2 = ((REG2 << 2) | REG2) & glm::uint64(0x3333333333333333);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 2);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask1);
|
||||||
|
|
||||||
|
//REG1 = ((REG1 << 1) | REG1) & glm::uint64(0x5555555555555555);
|
||||||
|
//REG2 = ((REG2 << 1) | REG2) & glm::uint64(0x5555555555555555);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 1);
|
||||||
|
Reg1 = _mm_or_si128(Reg2, Reg1);
|
||||||
|
Reg1 = _mm_and_si128(Reg1, Mask0);
|
||||||
|
|
||||||
|
//return REG1 | (REG2 << 1);
|
||||||
|
Reg2 = _mm_slli_epi32(Reg1, 1);
|
||||||
|
Reg2 = _mm_srli_si128(Reg2, 8);
|
||||||
|
Reg1 = _mm_or_si128(Reg1, Reg2);
|
||||||
|
|
||||||
|
return Reg1;
|
||||||
|
}
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glms
|
67
extern/glm-0.9.7.5/include/glm/detail/intrinsic_matrix.hpp
vendored
Normal file
67
extern/glm-0.9.7.5/include/glm/detail/intrinsic_matrix.hpp
vendored
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_common.hpp
|
||||||
|
/// @date 2009-06-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include "intrinsic_geometric.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
void sse_add_ps(__m128 in1[4], __m128 in2[4], __m128 out[4]);
|
||||||
|
|
||||||
|
void sse_sub_ps(__m128 in1[4], __m128 in2[4], __m128 out[4]);
|
||||||
|
|
||||||
|
__m128 sse_mul_ps(__m128 m[4], __m128 v);
|
||||||
|
|
||||||
|
__m128 sse_mul_ps(__m128 v, __m128 m[4]);
|
||||||
|
|
||||||
|
void sse_mul_ps(__m128 const in1[4], __m128 const in2[4], __m128 out[4]);
|
||||||
|
|
||||||
|
void sse_transpose_ps(__m128 const in[4], __m128 out[4]);
|
||||||
|
|
||||||
|
void sse_inverse_ps(__m128 const in[4], __m128 out[4]);
|
||||||
|
|
||||||
|
void sse_rotate_ps(__m128 const in[4], float Angle, float const v[3], __m128 out[4]);
|
||||||
|
|
||||||
|
__m128 sse_det_ps(__m128 const m[4]);
|
||||||
|
|
||||||
|
__m128 sse_slow_det_ps(__m128 const m[4]);
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "intrinsic_matrix.inl"
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
1070
extern/glm-0.9.7.5/include/glm/detail/intrinsic_matrix.inl
vendored
Normal file
1070
extern/glm-0.9.7.5/include/glm/detail/intrinsic_matrix.inl
vendored
Normal file
File diff suppressed because it is too large
Load Diff
46
extern/glm-0.9.7.5/include/glm/detail/intrinsic_trigonometric.hpp
vendored
Normal file
46
extern/glm-0.9.7.5/include/glm/detail/intrinsic_trigonometric.hpp
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_trigonometric.hpp
|
||||||
|
/// @date 2009-06-09 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "intrinsic_trigonometric.inl"
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
27
extern/glm-0.9.7.5/include/glm/detail/intrinsic_trigonometric.inl
vendored
Normal file
27
extern/glm-0.9.7.5/include/glm/detail/intrinsic_trigonometric.inl
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_trigonometric.inl
|
||||||
|
/// @date 2011-06-15 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
46
extern/glm-0.9.7.5/include/glm/detail/intrinsic_vector_relational.hpp
vendored
Normal file
46
extern/glm-0.9.7.5/include/glm/detail/intrinsic_vector_relational.hpp
vendored
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_vector_relational.hpp
|
||||||
|
/// @date 2009-06-09 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
#if(!(GLM_ARCH & GLM_ARCH_SSE2))
|
||||||
|
# error "SSE2 instructions not supported or enabled"
|
||||||
|
#else
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "intrinsic_vector_relational.inl"
|
||||||
|
|
||||||
|
#endif//GLM_ARCH
|
366
extern/glm-0.9.7.5/include/glm/detail/intrinsic_vector_relational.inl
vendored
Normal file
366
extern/glm-0.9.7.5/include/glm/detail/intrinsic_vector_relational.inl
vendored
Normal file
@ -0,0 +1,366 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/intrinsic_vector_relational.inl
|
||||||
|
/// @date 2009-06-09 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
//// lessThan
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec2<T, P>::bool_type lessThan
|
||||||
|
//(
|
||||||
|
// tvec2<T, P> const & x,
|
||||||
|
// tvec2<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec2<bool>::bool_type(x.x < y.x, x.y < y.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec3<T, P>::bool_type lessThan
|
||||||
|
//(
|
||||||
|
// tvec3<T, P> const & x,
|
||||||
|
// tvec3<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec3<bool>::bool_type(x.x < y.x, x.y < y.y, x.z < y.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec4<T, P>::bool_type lessThan
|
||||||
|
//(
|
||||||
|
// tvec4<T, P> const & x,
|
||||||
|
// tvec4<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec4<bool>::bool_type(x.x < y.x, x.y < y.y, x.z < y.z, x.w < y.w);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// lessThanEqual
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec2<T, P>::bool_type lessThanEqual
|
||||||
|
//(
|
||||||
|
// tvec2<T, P> const & x,
|
||||||
|
// tvec2<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec2<bool>::bool_type(x.x <= y.x, x.y <= y.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec3<T, P>::bool_type lessThanEqual
|
||||||
|
//(
|
||||||
|
// tvec3<T, P> const & x,
|
||||||
|
// tvec3<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec3<bool>::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec4<T, P>::bool_type lessThanEqual
|
||||||
|
//(
|
||||||
|
// tvec4<T, P> const & x,
|
||||||
|
// tvec4<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec4<bool>::bool_type(x.x <= y.x, x.y <= y.y, x.z <= y.z, x.w <= y.w);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// greaterThan
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec2<T, P>::bool_type greaterThan
|
||||||
|
//(
|
||||||
|
// tvec2<T, P> const & x,
|
||||||
|
// tvec2<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec2<bool>::bool_type(x.x > y.x, x.y > y.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec3<T, P>::bool_type greaterThan
|
||||||
|
//(
|
||||||
|
// tvec3<T, P> const & x,
|
||||||
|
// tvec3<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec3<bool>::bool_type(x.x > y.x, x.y > y.y, x.z > y.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec4<T, P>::bool_type greaterThan
|
||||||
|
//(
|
||||||
|
// tvec4<T, P> const & x,
|
||||||
|
// tvec4<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec4<bool>::bool_type(x.x > y.x, x.y > y.y, x.z > y.z, x.w > y.w);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// greaterThanEqual
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec2<T, P>::bool_type greaterThanEqual
|
||||||
|
//(
|
||||||
|
// tvec2<T, P> const & x,
|
||||||
|
// tvec2<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec2<bool>::bool_type(x.x >= y.x, x.y >= y.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec3<T, P>::bool_type greaterThanEqual
|
||||||
|
//(
|
||||||
|
// tvec3<T, P> const & x,
|
||||||
|
// tvec3<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec3<bool>::bool_type(x.x >= y.x, x.y >= y.y, x.z >= y.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec4<T, P>::bool_type greaterThanEqual
|
||||||
|
//(
|
||||||
|
// tvec4<T, P> const & x,
|
||||||
|
// tvec4<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint);
|
||||||
|
//
|
||||||
|
// return typename tvec4<bool>::bool_type(x.x >= y.x, x.y >= y.y, x.z >= y.z, x.w >= y.w);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// equal
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec2<T, P>::bool_type equal
|
||||||
|
//(
|
||||||
|
// tvec2<T, P> const & x,
|
||||||
|
// tvec2<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint ||
|
||||||
|
// detail::type<valType>::is_bool);
|
||||||
|
//
|
||||||
|
// return typename tvec2<T, P>::bool_type(x.x == y.x, x.y == y.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec3<T, P>::bool_type equal
|
||||||
|
//(
|
||||||
|
// tvec3<T, P> const & x,
|
||||||
|
// tvec3<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint ||
|
||||||
|
// detail::type<valType>::is_bool);
|
||||||
|
//
|
||||||
|
// return typename tvec3<T, P>::bool_type(x.x == y.x, x.y == y.y, x.z == y.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec4<T, P>::bool_type equal
|
||||||
|
//(
|
||||||
|
// tvec4<T, P> const & x,
|
||||||
|
// tvec4<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint ||
|
||||||
|
// detail::type<valType>::is_bool);
|
||||||
|
//
|
||||||
|
// return typename tvec4<T, P>::bool_type(x.x == y.x, x.y == y.y, x.z == y.z, x.w == y.w);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// notEqual
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec2<T, P>::bool_type notEqual
|
||||||
|
//(
|
||||||
|
// tvec2<T, P> const & x,
|
||||||
|
// tvec2<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint ||
|
||||||
|
// detail::type<valType>::is_bool);
|
||||||
|
//
|
||||||
|
// return typename tvec2<T, P>::bool_type(x.x != y.x, x.y != y.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec3<T, P>::bool_type notEqual
|
||||||
|
//(
|
||||||
|
// tvec3<T, P> const & x,
|
||||||
|
// tvec3<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint ||
|
||||||
|
// detail::type<valType>::is_bool);
|
||||||
|
//
|
||||||
|
// return typename tvec3<T, P>::bool_type(x.x != y.x, x.y != y.y, x.z != y.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//template <typename valType>
|
||||||
|
//GLM_FUNC_QUALIFIER typename tvec4<T, P>::bool_type notEqual
|
||||||
|
//(
|
||||||
|
// tvec4<T, P> const & x,
|
||||||
|
// tvec4<T, P> const & y
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// GLM_STATIC_ASSERT(
|
||||||
|
// detail::type<valType>::is_float ||
|
||||||
|
// detail::type<valType>::is_int ||
|
||||||
|
// detail::type<valType>::is_uint ||
|
||||||
|
// detail::type<valType>::is_bool);
|
||||||
|
//
|
||||||
|
// return typename tvec4<T, P>::bool_type(x.x != y.x, x.y != y.y, x.z != y.z, x.w != y.w);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// any
|
||||||
|
//GLM_FUNC_QUALIFIER bool any(tvec2<bool> const & x)
|
||||||
|
//{
|
||||||
|
// return x.x || x.y;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//GLM_FUNC_QUALIFIER bool any(tvec3<bool> const & x)
|
||||||
|
//{
|
||||||
|
// return x.x || x.y || x.z;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//GLM_FUNC_QUALIFIER bool any(tvec4<bool> const & x)
|
||||||
|
//{
|
||||||
|
// return x.x || x.y || x.z || x.w;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// all
|
||||||
|
//GLM_FUNC_QUALIFIER bool all(const tvec2<bool>& x)
|
||||||
|
//{
|
||||||
|
// return x.x && x.y;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//GLM_FUNC_QUALIFIER bool all(const tvec3<bool>& x)
|
||||||
|
//{
|
||||||
|
// return x.x && x.y && x.z;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//GLM_FUNC_QUALIFIER bool all(const tvec4<bool>& x)
|
||||||
|
//{
|
||||||
|
// return x.x && x.y && x.z && x.w;
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//// not
|
||||||
|
//GLM_FUNC_QUALIFIER tvec2<bool>::bool_type not_
|
||||||
|
//(
|
||||||
|
// tvec2<bool> const & v
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// return tvec2<bool>::bool_type(!v.x, !v.y);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//GLM_FUNC_QUALIFIER tvec3<bool>::bool_type not_
|
||||||
|
//(
|
||||||
|
// tvec3<bool> const & v
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// return tvec3<bool>::bool_type(!v.x, !v.y, !v.z);
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//GLM_FUNC_QUALIFIER tvec4<bool>::bool_type not_
|
||||||
|
//(
|
||||||
|
// tvec4<bool> const & v
|
||||||
|
//)
|
||||||
|
//{
|
||||||
|
// return tvec4<bool>::bool_type(!v.x, !v.y, !v.z, !v.w);
|
||||||
|
//}
|
45
extern/glm-0.9.7.5/include/glm/detail/precision.hpp
vendored
Normal file
45
extern/glm-0.9.7.5/include/glm/detail/precision.hpp
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/precision.hpp
|
||||||
|
/// @date 2013-04-01 / 2013-04-01
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
enum precision
|
||||||
|
{
|
||||||
|
highp,
|
||||||
|
mediump,
|
||||||
|
lowp,
|
||||||
|
simd,
|
||||||
|
defaultp = highp
|
||||||
|
};
|
||||||
|
}//namespace glm
|
1022
extern/glm-0.9.7.5/include/glm/detail/setup.hpp
vendored
Normal file
1022
extern/glm-0.9.7.5/include/glm/detail/setup.hpp
vendored
Normal file
File diff suppressed because it is too large
Load Diff
96
extern/glm-0.9.7.5/include/glm/detail/type_float.hpp
vendored
Normal file
96
extern/glm-0.9.7.5/include/glm/detail/type_float.hpp
vendored
Normal file
@ -0,0 +1,96 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_float.hpp
|
||||||
|
/// @date 2008-08-22 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
typedef float float32;
|
||||||
|
typedef double float64;
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
typedef float lowp_float_t;
|
||||||
|
typedef float mediump_float_t;
|
||||||
|
typedef double highp_float_t;
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.4 Floats</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef lowp_float_t lowp_float;
|
||||||
|
|
||||||
|
/// Medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.4 Floats</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef mediump_float_t mediump_float;
|
||||||
|
|
||||||
|
/// High precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.4 Floats</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef highp_float_t highp_float;
|
||||||
|
|
||||||
|
#if(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
|
||||||
|
typedef mediump_float float_t;
|
||||||
|
#elif(defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
|
||||||
|
typedef highp_float float_t;
|
||||||
|
#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
|
||||||
|
typedef mediump_float float_t;
|
||||||
|
#elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && defined(GLM_PRECISION_LOWP_FLOAT))
|
||||||
|
typedef lowp_float float_t;
|
||||||
|
#else
|
||||||
|
# error "GLM error: multiple default precision requested for floating-point types"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef float float32;
|
||||||
|
typedef double float64;
|
||||||
|
|
||||||
|
////////////////////
|
||||||
|
// check type sizes
|
||||||
|
#ifndef GLM_STATIC_ASSERT_NULL
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::float32) == 4, "float32 size isn't 4 bytes on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::float64) == 8, "float64 size isn't 8 bytes on this platform");
|
||||||
|
#endif//GLM_STATIC_ASSERT_NULL
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
}//namespace glm
|
224
extern/glm-0.9.7.5/include/glm/detail/type_gentype.hpp
vendored
Normal file
224
extern/glm-0.9.7.5/include/glm/detail/type_gentype.hpp
vendored
Normal file
@ -0,0 +1,224 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_gentype.hpp
|
||||||
|
/// @date 2008-10-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
enum profile
|
||||||
|
{
|
||||||
|
nice,
|
||||||
|
fast,
|
||||||
|
simd
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef std::size_t sizeType;
|
||||||
|
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template
|
||||||
|
<
|
||||||
|
typename VALTYPE,
|
||||||
|
template <typename> class TYPE
|
||||||
|
>
|
||||||
|
struct genType
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum ctor{null};
|
||||||
|
|
||||||
|
typedef VALTYPE value_type;
|
||||||
|
typedef VALTYPE & value_reference;
|
||||||
|
typedef VALTYPE * value_pointer;
|
||||||
|
typedef VALTYPE const * value_const_pointer;
|
||||||
|
typedef TYPE<bool> bool_type;
|
||||||
|
|
||||||
|
typedef sizeType size_type;
|
||||||
|
static bool is_vector();
|
||||||
|
static bool is_matrix();
|
||||||
|
|
||||||
|
typedef TYPE<VALTYPE> type;
|
||||||
|
typedef TYPE<VALTYPE> * pointer;
|
||||||
|
typedef TYPE<VALTYPE> const * const_pointer;
|
||||||
|
typedef TYPE<VALTYPE> const * const const_pointer_const;
|
||||||
|
typedef TYPE<VALTYPE> * const pointer_const;
|
||||||
|
typedef TYPE<VALTYPE> & reference;
|
||||||
|
typedef TYPE<VALTYPE> const & const_reference;
|
||||||
|
typedef TYPE<VALTYPE> const & param_type;
|
||||||
|
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Address (Implementation details)
|
||||||
|
|
||||||
|
value_const_pointer value_address() const{return value_pointer(this);}
|
||||||
|
value_pointer value_address(){return value_pointer(this);}
|
||||||
|
|
||||||
|
//protected:
|
||||||
|
// enum kind
|
||||||
|
// {
|
||||||
|
// GEN_TYPE,
|
||||||
|
// VEC_TYPE,
|
||||||
|
// MAT_TYPE
|
||||||
|
// };
|
||||||
|
|
||||||
|
// typedef typename TYPE::kind kind;
|
||||||
|
};
|
||||||
|
|
||||||
|
template
|
||||||
|
<
|
||||||
|
typename VALTYPE,
|
||||||
|
template <typename> class TYPE
|
||||||
|
>
|
||||||
|
bool genType<VALTYPE, TYPE>::is_vector()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
template <typename valTypeT, unsigned int colT, unsigned int rowT, profile proT = nice>
|
||||||
|
class base
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Traits
|
||||||
|
|
||||||
|
typedef sizeType size_type;
|
||||||
|
typedef valTypeT value_type;
|
||||||
|
|
||||||
|
typedef base<value_type, colT, rowT> class_type;
|
||||||
|
|
||||||
|
typedef base<bool, colT, rowT> bool_type;
|
||||||
|
typedef base<value_type, rowT, 1> col_type;
|
||||||
|
typedef base<value_type, colT, 1> row_type;
|
||||||
|
typedef base<value_type, rowT, colT> transpose_type;
|
||||||
|
|
||||||
|
static size_type col_size();
|
||||||
|
static size_type row_size();
|
||||||
|
static size_type value_size();
|
||||||
|
static bool is_scalar();
|
||||||
|
static bool is_vector();
|
||||||
|
static bool is_matrix();
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Data
|
||||||
|
col_type value[colT];
|
||||||
|
|
||||||
|
public:
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Constructors
|
||||||
|
base();
|
||||||
|
base(class_type const & m);
|
||||||
|
|
||||||
|
explicit base(T const & x);
|
||||||
|
explicit base(value_type const * const x);
|
||||||
|
explicit base(col_type const * const x);
|
||||||
|
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Conversions
|
||||||
|
template <typename vU, uint cU, uint rU, profile pU>
|
||||||
|
explicit base(base<vU, cU, rU, pU> const & m);
|
||||||
|
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Accesses
|
||||||
|
col_type& operator[](size_type i);
|
||||||
|
col_type const & operator[](size_type i) const;
|
||||||
|
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Unary updatable operators
|
||||||
|
class_type& operator= (class_type const & x);
|
||||||
|
class_type& operator+= (T const & x);
|
||||||
|
class_type& operator+= (class_type const & x);
|
||||||
|
class_type& operator-= (T const & x);
|
||||||
|
class_type& operator-= (class_type const & x);
|
||||||
|
class_type& operator*= (T const & x);
|
||||||
|
class_type& operator*= (class_type const & x);
|
||||||
|
class_type& operator/= (T const & x);
|
||||||
|
class_type& operator/= (class_type const & x);
|
||||||
|
class_type& operator++ ();
|
||||||
|
class_type& operator-- ();
|
||||||
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
|
//template <typename T>
|
||||||
|
//struct traits
|
||||||
|
//{
|
||||||
|
// static const bool is_signed = false;
|
||||||
|
// static const bool is_float = false;
|
||||||
|
// static const bool is_vector = false;
|
||||||
|
// static const bool is_matrix = false;
|
||||||
|
// static const bool is_genType = false;
|
||||||
|
// static const bool is_genIType = false;
|
||||||
|
// static const bool is_genUType = false;
|
||||||
|
//};
|
||||||
|
|
||||||
|
//template <>
|
||||||
|
//struct traits<half>
|
||||||
|
//{
|
||||||
|
// static const bool is_float = true;
|
||||||
|
// static const bool is_genType = true;
|
||||||
|
//};
|
||||||
|
|
||||||
|
//template <>
|
||||||
|
//struct traits<float>
|
||||||
|
//{
|
||||||
|
// static const bool is_float = true;
|
||||||
|
// static const bool is_genType = true;
|
||||||
|
//};
|
||||||
|
|
||||||
|
//template <>
|
||||||
|
//struct traits<double>
|
||||||
|
//{
|
||||||
|
// static const bool is_float = true;
|
||||||
|
// static const bool is_genType = true;
|
||||||
|
//};
|
||||||
|
|
||||||
|
//template <typename genType>
|
||||||
|
//struct desc
|
||||||
|
//{
|
||||||
|
// typedef genType type;
|
||||||
|
// typedef genType * pointer;
|
||||||
|
// typedef genType const* const_pointer;
|
||||||
|
// typedef genType const *const const_pointer_const;
|
||||||
|
// typedef genType *const pointer_const;
|
||||||
|
// typedef genType & reference;
|
||||||
|
// typedef genType const& const_reference;
|
||||||
|
// typedef genType const& param_type;
|
||||||
|
|
||||||
|
// typedef typename genType::value_type value_type;
|
||||||
|
// typedef typename genType::size_type size_type;
|
||||||
|
// static const typename size_type value_size;
|
||||||
|
//};
|
||||||
|
|
||||||
|
//template <typename genType>
|
||||||
|
//const typename desc<genType>::size_type desc<genType>::value_size = genType::value_size();
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
//#include "type_gentype.inl"
|
370
extern/glm-0.9.7.5/include/glm/detail/type_gentype.inl
vendored
Normal file
370
extern/glm-0.9.7.5/include/glm/detail/type_gentype.inl
vendored
Normal file
@ -0,0 +1,370 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_gentype.inl
|
||||||
|
/// @date 2008-10-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail{
|
||||||
|
|
||||||
|
/////////////////////////////////
|
||||||
|
// Static functions
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::size_type base<vT, cT, rT, pT>::col_size()
|
||||||
|
{
|
||||||
|
return cT;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::size_type base<vT, cT, rT, pT>::row_size()
|
||||||
|
{
|
||||||
|
return rT;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::size_type base<vT, cT, rT, pT>::value_size()
|
||||||
|
{
|
||||||
|
return rT * cT;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
bool base<vT, cT, rT, pT>::is_scalar()
|
||||||
|
{
|
||||||
|
return rT == 1 && cT == 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
bool base<vT, cT, rT, pT>::is_vector()
|
||||||
|
{
|
||||||
|
return rT == 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
bool base<vT, cT, rT, pT>::is_matrix()
|
||||||
|
{
|
||||||
|
return rT != 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/////////////////////////////////
|
||||||
|
// Constructor
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
base<vT, cT, rT, pT>::base()
|
||||||
|
{
|
||||||
|
memset(&this->value, 0, cT * rT * sizeof(vT));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
base<vT, cT, rT, pT>::base
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::class_type const & m
|
||||||
|
)
|
||||||
|
{
|
||||||
|
for
|
||||||
|
(
|
||||||
|
typename genType<vT, cT, rT, pT>::size_type i = typename base<vT, cT, rT, pT>::size_type(0);
|
||||||
|
i < base<vT, cT, rT, pT>::col_size();
|
||||||
|
++i
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[i] = m[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
base<vT, cT, rT, pT>::base
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::T const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
if(rT == 1) // vector
|
||||||
|
{
|
||||||
|
for
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::size_type i = typename base<vT, cT, rT, pT>::size_type(0);
|
||||||
|
i < base<vT, cT, rT, pT>::col_size();
|
||||||
|
++i
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[i][rT] = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else // matrix
|
||||||
|
{
|
||||||
|
memset(&this->value, 0, cT * rT * sizeof(vT));
|
||||||
|
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop = cT < rT ? cT : rT;
|
||||||
|
|
||||||
|
for
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::size_type i = typename base<vT, cT, rT, pT>::size_type(0);
|
||||||
|
i < stop;
|
||||||
|
++i
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[i][i] = x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
base<vT, cT, rT, pT>::base
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::value_type const * const x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
memcpy(&this->value, &x.value, cT * rT * sizeof(vT));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
base<vT, cT, rT, pT>::base
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::col_type const * const x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
for
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::size_type i = typename base<vT, cT, rT, pT>::size_type(0);
|
||||||
|
i < base<vT, cT, rT, pT>::col_size();
|
||||||
|
++i
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[i] = x[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
template <typename vU, uint cU, uint rU, profile pU>
|
||||||
|
base<vT, cT, rT, pT>::base
|
||||||
|
(
|
||||||
|
base<vU, cU, rU, pU> const & m
|
||||||
|
)
|
||||||
|
{
|
||||||
|
for
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::size_type i = typename base<vT, cT, rT, pT>::size_type(0);
|
||||||
|
i < base<vT, cT, rT, pT>::col_size();
|
||||||
|
++i
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[i] = base<vT, cT, rT, pT>(m[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Accesses
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::col_type& base<vT, cT, rT, pT>::operator[]
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::size_type i
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::col_type const & base<vT, cT, rT, pT>::operator[]
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::size_type i
|
||||||
|
) const
|
||||||
|
{
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
//////////////////////////////////////
|
||||||
|
// Unary updatable operators
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::class_type const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
memcpy(&this->value, &x.value, cT * rT * sizeof(vT));
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator+=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::T const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] += x;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator+=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::class_type const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] += x[j][i];
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator-=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::T const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] -= x;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator-=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::class_type const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] -= x[j][i];
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator*=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::T const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] *= x;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator*=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::class_type const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] *= x[j][i];
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator/=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::T const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] /= x;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator/=
|
||||||
|
(
|
||||||
|
typename base<vT, cT, rT, pT>::class_type const & x
|
||||||
|
)
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = x.col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = x.row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
this->value[j][i] /= x[j][i];
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator++ ()
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
++this->value[j][i];
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename vT, uint cT, uint rT, profile pT>
|
||||||
|
typename base<vT, cT, rT, pT>::class_type& base<vT, cT, rT, pT>::operator-- ()
|
||||||
|
{
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_col = col_size();
|
||||||
|
typename base<vT, cT, rT, pT>::size_type stop_row = row_size();
|
||||||
|
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type j = 0; j < stop_col; ++j)
|
||||||
|
for(typename base<vT, cT, rT, pT>::size_type i = 0; i < stop_row; ++i)
|
||||||
|
--this->value[j][i];
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
} //namespace detail
|
||||||
|
} //namespace glm
|
48
extern/glm-0.9.7.5/include/glm/detail/type_half.hpp
vendored
Normal file
48
extern/glm-0.9.7.5/include/glm/detail/type_half.hpp
vendored
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_half.hpp
|
||||||
|
/// @date 2008-08-17 / 2011-09-20
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
typedef short hdata;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL float toFloat32(hdata value);
|
||||||
|
GLM_FUNC_DECL hdata toFloat16(float const & value);
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#include "type_half.inl"
|
277
extern/glm-0.9.7.5/include/glm/detail/type_half.inl
vendored
Normal file
277
extern/glm-0.9.7.5/include/glm/detail/type_half.inl
vendored
Normal file
@ -0,0 +1,277 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
///
|
||||||
|
/// This half implementation is based on OpenEXR which is Copyright (c) 2002,
|
||||||
|
/// Industrial Light & Magic, a division of Lucas Digital Ltd. LLC
|
||||||
|
///
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_half.inl
|
||||||
|
/// @date 2008-08-17 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER float overflow()
|
||||||
|
{
|
||||||
|
volatile float f = 1e10;
|
||||||
|
|
||||||
|
for(int i = 0; i < 10; ++i)
|
||||||
|
f *= f; // this will overflow before the for loop terminates
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
|
||||||
|
union uif32
|
||||||
|
{
|
||||||
|
GLM_FUNC_QUALIFIER uif32() :
|
||||||
|
i(0)
|
||||||
|
{}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uif32(float f_) :
|
||||||
|
f(f_)
|
||||||
|
{}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER uif32(uint32 i_) :
|
||||||
|
i(i_)
|
||||||
|
{}
|
||||||
|
|
||||||
|
float f;
|
||||||
|
uint32 i;
|
||||||
|
};
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER float toFloat32(hdata value)
|
||||||
|
{
|
||||||
|
int s = (value >> 15) & 0x00000001;
|
||||||
|
int e = (value >> 10) & 0x0000001f;
|
||||||
|
int m = value & 0x000003ff;
|
||||||
|
|
||||||
|
if(e == 0)
|
||||||
|
{
|
||||||
|
if(m == 0)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Plus or minus zero
|
||||||
|
//
|
||||||
|
|
||||||
|
detail::uif32 result;
|
||||||
|
result.i = (unsigned int)(s << 31);
|
||||||
|
return result.f;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Denormalized number -- renormalize it
|
||||||
|
//
|
||||||
|
|
||||||
|
while(!(m & 0x00000400))
|
||||||
|
{
|
||||||
|
m <<= 1;
|
||||||
|
e -= 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
e += 1;
|
||||||
|
m &= ~0x00000400;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(e == 31)
|
||||||
|
{
|
||||||
|
if(m == 0)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Positive or negative infinity
|
||||||
|
//
|
||||||
|
|
||||||
|
uif32 result;
|
||||||
|
result.i = (unsigned int)((s << 31) | 0x7f800000);
|
||||||
|
return result.f;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// Nan -- preserve sign and significand bits
|
||||||
|
//
|
||||||
|
|
||||||
|
uif32 result;
|
||||||
|
result.i = (unsigned int)((s << 31) | 0x7f800000 | (m << 13));
|
||||||
|
return result.f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Normalized number
|
||||||
|
//
|
||||||
|
|
||||||
|
e = e + (127 - 15);
|
||||||
|
m = m << 13;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Assemble s, e and m.
|
||||||
|
//
|
||||||
|
|
||||||
|
uif32 Result;
|
||||||
|
Result.i = (unsigned int)((s << 31) | (e << 23) | m);
|
||||||
|
return Result.f;
|
||||||
|
}
|
||||||
|
|
||||||
|
GLM_FUNC_QUALIFIER hdata toFloat16(float const & f)
|
||||||
|
{
|
||||||
|
uif32 Entry;
|
||||||
|
Entry.f = f;
|
||||||
|
int i = (int)Entry.i;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Our floating point number, f, is represented by the bit
|
||||||
|
// pattern in integer i. Disassemble that bit pattern into
|
||||||
|
// the sign, s, the exponent, e, and the significand, m.
|
||||||
|
// Shift s into the position where it will go in in the
|
||||||
|
// resulting half number.
|
||||||
|
// Adjust e, accounting for the different exponent bias
|
||||||
|
// of float and half (127 versus 15).
|
||||||
|
//
|
||||||
|
|
||||||
|
int s = (i >> 16) & 0x00008000;
|
||||||
|
int e = ((i >> 23) & 0x000000ff) - (127 - 15);
|
||||||
|
int m = i & 0x007fffff;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Now reassemble s, e and m into a half:
|
||||||
|
//
|
||||||
|
|
||||||
|
if(e <= 0)
|
||||||
|
{
|
||||||
|
if(e < -10)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// E is less than -10. The absolute value of f is
|
||||||
|
// less than half_MIN (f may be a small normalized
|
||||||
|
// float, a denormalized float or a zero).
|
||||||
|
//
|
||||||
|
// We convert f to a half zero.
|
||||||
|
//
|
||||||
|
|
||||||
|
return hdata(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// E is between -10 and 0. F is a normalized float,
|
||||||
|
// whose magnitude is less than __half_NRM_MIN.
|
||||||
|
//
|
||||||
|
// We convert f to a denormalized half.
|
||||||
|
//
|
||||||
|
|
||||||
|
m = (m | 0x00800000) >> (1 - e);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Round to nearest, round "0.5" up.
|
||||||
|
//
|
||||||
|
// Rounding may cause the significand to overflow and make
|
||||||
|
// our number normalized. Because of the way a half's bits
|
||||||
|
// are laid out, we don't have to treat this case separately;
|
||||||
|
// the code below will handle it correctly.
|
||||||
|
//
|
||||||
|
|
||||||
|
if(m & 0x00001000)
|
||||||
|
m += 0x00002000;
|
||||||
|
|
||||||
|
//
|
||||||
|
// Assemble the half from s, e (zero) and m.
|
||||||
|
//
|
||||||
|
|
||||||
|
return hdata(s | (m >> 13));
|
||||||
|
}
|
||||||
|
else if(e == 0xff - (127 - 15))
|
||||||
|
{
|
||||||
|
if(m == 0)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// F is an infinity; convert f to a half
|
||||||
|
// infinity with the same sign as f.
|
||||||
|
//
|
||||||
|
|
||||||
|
return hdata(s | 0x7c00);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// F is a NAN; we produce a half NAN that preserves
|
||||||
|
// the sign bit and the 10 leftmost bits of the
|
||||||
|
// significand of f, with one exception: If the 10
|
||||||
|
// leftmost bits are all zero, the NAN would turn
|
||||||
|
// into an infinity, so we have to set at least one
|
||||||
|
// bit in the significand.
|
||||||
|
//
|
||||||
|
|
||||||
|
m >>= 13;
|
||||||
|
|
||||||
|
return hdata(s | 0x7c00 | m | (m == 0));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// E is greater than zero. F is a normalized float.
|
||||||
|
// We try to convert f to a normalized half.
|
||||||
|
//
|
||||||
|
|
||||||
|
//
|
||||||
|
// Round to nearest, round "0.5" up
|
||||||
|
//
|
||||||
|
|
||||||
|
if(m & 0x00001000)
|
||||||
|
{
|
||||||
|
m += 0x00002000;
|
||||||
|
|
||||||
|
if(m & 0x00800000)
|
||||||
|
{
|
||||||
|
m = 0; // overflow in significand,
|
||||||
|
e += 1; // adjust exponent
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Handle exponent overflow
|
||||||
|
//
|
||||||
|
|
||||||
|
if (e > 30)
|
||||||
|
{
|
||||||
|
overflow(); // Cause a hardware floating point overflow;
|
||||||
|
|
||||||
|
return hdata(s | 0x7c00);
|
||||||
|
// if this returns, the half becomes an
|
||||||
|
} // infinity with the same sign as f.
|
||||||
|
|
||||||
|
//
|
||||||
|
// Assemble the half from s, e and m.
|
||||||
|
//
|
||||||
|
|
||||||
|
return hdata(s | (e << 10) | (m >> 13));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}//namespace detail
|
||||||
|
}//namespace glm
|
326
extern/glm-0.9.7.5/include/glm/detail/type_int.hpp
vendored
Normal file
326
extern/glm-0.9.7.5/include/glm/detail/type_int.hpp
vendored
Normal file
@ -0,0 +1,326 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_int.hpp
|
||||||
|
/// @date 2008-08-22 / 2013-03-30
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "setup.hpp"
|
||||||
|
#if GLM_HAS_MAKE_SIGNED
|
||||||
|
# include <type_traits>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if GLM_HAS_EXTENDED_INTEGER_TYPE
|
||||||
|
# include <cstdint>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
# if GLM_HAS_EXTENDED_INTEGER_TYPE
|
||||||
|
typedef std::int8_t int8;
|
||||||
|
typedef std::int16_t int16;
|
||||||
|
typedef std::int32_t int32;
|
||||||
|
typedef std::int64_t int64;
|
||||||
|
|
||||||
|
typedef std::uint8_t uint8;
|
||||||
|
typedef std::uint16_t uint16;
|
||||||
|
typedef std::uint32_t uint32;
|
||||||
|
typedef std::uint64_t uint64;
|
||||||
|
# else
|
||||||
|
# if(defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)) // C99 detected, 64 bit types available
|
||||||
|
typedef int64_t sint64;
|
||||||
|
typedef uint64_t uint64;
|
||||||
|
# elif GLM_COMPILER & GLM_COMPILER_VC
|
||||||
|
typedef signed __int64 sint64;
|
||||||
|
typedef unsigned __int64 uint64;
|
||||||
|
# elif GLM_COMPILER & GLM_COMPILER_GCC
|
||||||
|
__extension__ typedef signed long long sint64;
|
||||||
|
__extension__ typedef unsigned long long uint64;
|
||||||
|
# else//unknown compiler
|
||||||
|
typedef signed long long sint64;
|
||||||
|
typedef unsigned long long uint64;
|
||||||
|
# endif//GLM_COMPILER
|
||||||
|
|
||||||
|
typedef signed char int8;
|
||||||
|
typedef signed short int16;
|
||||||
|
typedef signed int int32;
|
||||||
|
typedef sint64 int64;
|
||||||
|
|
||||||
|
typedef unsigned char uint8;
|
||||||
|
typedef unsigned short uint16;
|
||||||
|
typedef unsigned int uint32;
|
||||||
|
typedef uint64 uint64;
|
||||||
|
#endif//
|
||||||
|
|
||||||
|
typedef signed int lowp_int_t;
|
||||||
|
typedef signed int mediump_int_t;
|
||||||
|
typedef signed int highp_int_t;
|
||||||
|
|
||||||
|
typedef unsigned int lowp_uint_t;
|
||||||
|
typedef unsigned int mediump_uint_t;
|
||||||
|
typedef unsigned int highp_uint_t;
|
||||||
|
|
||||||
|
# if GLM_HAS_MAKE_SIGNED
|
||||||
|
using std::make_signed;
|
||||||
|
using std::make_unsigned;
|
||||||
|
|
||||||
|
# else//GLM_HAS_MAKE_SIGNED
|
||||||
|
template <typename genType>
|
||||||
|
struct make_signed
|
||||||
|
{};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<char>
|
||||||
|
{
|
||||||
|
typedef char type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<short>
|
||||||
|
{
|
||||||
|
typedef short type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<int>
|
||||||
|
{
|
||||||
|
typedef int type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<long>
|
||||||
|
{
|
||||||
|
typedef long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<long long>
|
||||||
|
{
|
||||||
|
typedef long long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<unsigned char>
|
||||||
|
{
|
||||||
|
typedef char type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<unsigned short>
|
||||||
|
{
|
||||||
|
typedef short type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<unsigned int>
|
||||||
|
{
|
||||||
|
typedef int type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<unsigned long>
|
||||||
|
{
|
||||||
|
typedef long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_signed<unsigned long long>
|
||||||
|
{
|
||||||
|
typedef long long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename genType>
|
||||||
|
struct make_unsigned
|
||||||
|
{};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<char>
|
||||||
|
{
|
||||||
|
typedef unsigned char type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<short>
|
||||||
|
{
|
||||||
|
typedef unsigned short type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<int>
|
||||||
|
{
|
||||||
|
typedef unsigned int type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<long>
|
||||||
|
{
|
||||||
|
typedef unsigned long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<long long>
|
||||||
|
{
|
||||||
|
typedef unsigned long long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<unsigned char>
|
||||||
|
{
|
||||||
|
typedef unsigned char type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<unsigned short>
|
||||||
|
{
|
||||||
|
typedef unsigned short type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<unsigned int>
|
||||||
|
{
|
||||||
|
typedef unsigned int type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<unsigned long>
|
||||||
|
{
|
||||||
|
typedef unsigned long type;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <>
|
||||||
|
struct make_unsigned<unsigned long long>
|
||||||
|
{
|
||||||
|
typedef unsigned long long type;
|
||||||
|
};
|
||||||
|
# endif//GLM_HAS_MAKE_SIGNED
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
typedef detail::int8 int8;
|
||||||
|
typedef detail::int16 int16;
|
||||||
|
typedef detail::int32 int32;
|
||||||
|
typedef detail::int64 int64;
|
||||||
|
|
||||||
|
typedef detail::uint8 uint8;
|
||||||
|
typedef detail::uint16 uint16;
|
||||||
|
typedef detail::uint32 uint32;
|
||||||
|
typedef detail::uint64 uint64;
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// Low precision signed integer.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef detail::lowp_int_t lowp_int;
|
||||||
|
|
||||||
|
/// Medium precision signed integer.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef detail::mediump_int_t mediump_int;
|
||||||
|
|
||||||
|
/// High precision signed integer.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef detail::highp_int_t highp_int;
|
||||||
|
|
||||||
|
/// Low precision unsigned integer.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef detail::lowp_uint_t lowp_uint;
|
||||||
|
|
||||||
|
/// Medium precision unsigned integer.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef detail::mediump_uint_t mediump_uint;
|
||||||
|
|
||||||
|
/// High precision unsigned integer.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef detail::highp_uint_t highp_uint;
|
||||||
|
|
||||||
|
#if(!defined(GLM_PRECISION_HIGHP_INT) && !defined(GLM_PRECISION_MEDIUMP_INT) && !defined(GLM_PRECISION_LOWP_INT))
|
||||||
|
typedef mediump_int int_t;
|
||||||
|
#elif(defined(GLM_PRECISION_HIGHP_INT) && !defined(GLM_PRECISION_MEDIUMP_INT) && !defined(GLM_PRECISION_LOWP_INT))
|
||||||
|
typedef highp_int int_t;
|
||||||
|
#elif(!defined(GLM_PRECISION_HIGHP_INT) && defined(GLM_PRECISION_MEDIUMP_INT) && !defined(GLM_PRECISION_LOWP_INT))
|
||||||
|
typedef mediump_int int_t;
|
||||||
|
#elif(!defined(GLM_PRECISION_HIGHP_INT) && !defined(GLM_PRECISION_MEDIUMP_INT) && defined(GLM_PRECISION_LOWP_INT))
|
||||||
|
typedef lowp_int int_t;
|
||||||
|
#else
|
||||||
|
# error "GLM error: multiple default precision requested for signed interger types"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if(!defined(GLM_PRECISION_HIGHP_UINT) && !defined(GLM_PRECISION_MEDIUMP_UINT) && !defined(GLM_PRECISION_LOWP_UINT))
|
||||||
|
typedef mediump_uint uint_t;
|
||||||
|
#elif(defined(GLM_PRECISION_HIGHP_UINT) && !defined(GLM_PRECISION_MEDIUMP_UINT) && !defined(GLM_PRECISION_LOWP_UINT))
|
||||||
|
typedef highp_uint uint_t;
|
||||||
|
#elif(!defined(GLM_PRECISION_HIGHP_UINT) && defined(GLM_PRECISION_MEDIUMP_UINT) && !defined(GLM_PRECISION_LOWP_UINT))
|
||||||
|
typedef mediump_uint uint_t;
|
||||||
|
#elif(!defined(GLM_PRECISION_HIGHP_UINT) && !defined(GLM_PRECISION_MEDIUMP_UINT) && defined(GLM_PRECISION_LOWP_UINT))
|
||||||
|
typedef lowp_uint uint_t;
|
||||||
|
#else
|
||||||
|
# error "GLM error: multiple default precision requested for unsigned interger types"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/// Unsigned integer type.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.3 Integers</a>
|
||||||
|
typedef unsigned int uint;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
////////////////////
|
||||||
|
// check type sizes
|
||||||
|
#ifndef GLM_STATIC_ASSERT_NULL
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::int8) == 1, "int8 size isn't 1 byte on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::int16) == 2, "int16 size isn't 2 bytes on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::int32) == 4, "int32 size isn't 4 bytes on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::int64) == 8, "int64 size isn't 8 bytes on this platform");
|
||||||
|
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::uint8) == 1, "uint8 size isn't 1 byte on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::uint16) == 2, "uint16 size isn't 2 bytes on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::uint32) == 4, "uint32 size isn't 4 bytes on this platform");
|
||||||
|
GLM_STATIC_ASSERT(sizeof(glm::uint64) == 8, "uint64 size isn't 8 bytes on this platform");
|
||||||
|
#endif//GLM_STATIC_ASSERT_NULL
|
||||||
|
|
||||||
|
}//namespace glm
|
793
extern/glm-0.9.7.5/include/glm/detail/type_mat.hpp
vendored
Normal file
793
extern/glm-0.9.7.5/include/glm/detail/type_mat.hpp
vendored
Normal file
@ -0,0 +1,793 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat.hpp
|
||||||
|
/// @date 2010-01-26 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "precision.hpp"
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename T, precision P, template <class, precision> class colType, template <class, precision> class rowType>
|
||||||
|
struct outerProduct_trait{};
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
template <typename T, precision P> struct tvec2;
|
||||||
|
template <typename T, precision P> struct tvec3;
|
||||||
|
template <typename T, precision P> struct tvec4;
|
||||||
|
template <typename T, precision P> struct tmat2x2;
|
||||||
|
template <typename T, precision P> struct tmat2x3;
|
||||||
|
template <typename T, precision P> struct tmat2x4;
|
||||||
|
template <typename T, precision P> struct tmat3x2;
|
||||||
|
template <typename T, precision P> struct tmat3x3;
|
||||||
|
template <typename T, precision P> struct tmat3x4;
|
||||||
|
template <typename T, precision P> struct tmat4x2;
|
||||||
|
template <typename T, precision P> struct tmat4x3;
|
||||||
|
template <typename T, precision P> struct tmat4x4;
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<float, lowp> lowp_mat2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<float, mediump> mediump_mat2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<float, highp> highp_mat2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<float, lowp> lowp_mat2x2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<float, mediump> mediump_mat2x2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<float, highp> highp_mat2x2;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 2 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x3<float, lowp> lowp_mat2x3;
|
||||||
|
|
||||||
|
/// 2 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x3<float, mediump> mediump_mat2x3;
|
||||||
|
|
||||||
|
/// 2 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x3<float, highp> highp_mat2x3;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 2 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x4<float, lowp> lowp_mat2x4;
|
||||||
|
|
||||||
|
/// 2 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x4<float, mediump> mediump_mat2x4;
|
||||||
|
|
||||||
|
/// 2 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x4<float, highp> highp_mat2x4;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 3 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x2<float, lowp> lowp_mat3x2;
|
||||||
|
|
||||||
|
/// 3 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x2<float, mediump> mediump_mat3x2;
|
||||||
|
|
||||||
|
/// 3 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x2<float, highp> highp_mat3x2;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, lowp> lowp_mat3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, mediump> mediump_mat3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, highp> highp_mat3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, lowp> lowp_mat3x3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, mediump> mediump_mat3x3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, highp> highp_mat3x3;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 3 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x4<float, lowp> lowp_mat3x4;
|
||||||
|
|
||||||
|
/// 3 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x4<float, mediump> mediump_mat3x4;
|
||||||
|
|
||||||
|
/// 3 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x4<float, highp> highp_mat3x4;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 4 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x2<float, lowp> lowp_mat4x2;
|
||||||
|
|
||||||
|
/// 4 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x2<float, mediump> mediump_mat4x2;
|
||||||
|
|
||||||
|
/// 4 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x2<float, highp> highp_mat4x2;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 4 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x3<float, lowp> lowp_mat4x3;
|
||||||
|
|
||||||
|
/// 4 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x3<float, mediump> mediump_mat4x3;
|
||||||
|
|
||||||
|
/// 4 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x3<float, highp> highp_mat4x3;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<float, lowp> lowp_mat4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<float, mediump> mediump_mat4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<float, highp> highp_mat4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<float, lowp> lowp_mat4x4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<float, mediump> mediump_mat4x4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
/// There is no guarantee on the actual precision.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<float, highp> highp_mat4x4;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_types
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
//////////////////////////
|
||||||
|
// Float definition
|
||||||
|
|
||||||
|
#if(defined(GLM_PRECISION_LOWP_FLOAT))
|
||||||
|
typedef lowp_mat2x2 mat2x2;
|
||||||
|
typedef lowp_mat2x3 mat2x3;
|
||||||
|
typedef lowp_mat2x4 mat2x4;
|
||||||
|
typedef lowp_mat3x2 mat3x2;
|
||||||
|
typedef lowp_mat3x3 mat3x3;
|
||||||
|
typedef lowp_mat3x4 mat3x4;
|
||||||
|
typedef lowp_mat4x2 mat4x2;
|
||||||
|
typedef lowp_mat4x3 mat4x3;
|
||||||
|
typedef lowp_mat4x4 mat4x4;
|
||||||
|
#elif(defined(GLM_PRECISION_MEDIUMP_FLOAT))
|
||||||
|
typedef mediump_mat2x2 mat2x2;
|
||||||
|
typedef mediump_mat2x3 mat2x3;
|
||||||
|
typedef mediump_mat2x4 mat2x4;
|
||||||
|
typedef mediump_mat3x2 mat3x2;
|
||||||
|
typedef mediump_mat3x3 mat3x3;
|
||||||
|
typedef mediump_mat3x4 mat3x4;
|
||||||
|
typedef mediump_mat4x2 mat4x2;
|
||||||
|
typedef mediump_mat4x3 mat4x3;
|
||||||
|
typedef mediump_mat4x4 mat4x4;
|
||||||
|
#else
|
||||||
|
//! 2 columns of 2 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat2x2 mat2x2;
|
||||||
|
|
||||||
|
//! 2 columns of 3 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat2x3 mat2x3;
|
||||||
|
|
||||||
|
//! 2 columns of 4 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat2x4 mat2x4;
|
||||||
|
|
||||||
|
//! 3 columns of 2 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat3x2 mat3x2;
|
||||||
|
|
||||||
|
//! 3 columns of 3 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat3x3 mat3x3;
|
||||||
|
|
||||||
|
//! 3 columns of 4 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat3x4 mat3x4;
|
||||||
|
|
||||||
|
//! 4 columns of 2 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat4x2 mat4x2;
|
||||||
|
|
||||||
|
//! 4 columns of 3 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat4x3 mat4x3;
|
||||||
|
|
||||||
|
//! 4 columns of 4 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_mat4x4 mat4x4;
|
||||||
|
|
||||||
|
#endif//GLM_PRECISION
|
||||||
|
|
||||||
|
//! 2 columns of 2 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef mat2x2 mat2;
|
||||||
|
|
||||||
|
//! 3 columns of 3 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef mat3x3 mat3;
|
||||||
|
|
||||||
|
//! 4 columns of 4 components matrix of floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef mat4x4 mat4;
|
||||||
|
|
||||||
|
//////////////////////////
|
||||||
|
// Double definition
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<double, lowp> lowp_dmat2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<double, mediump> mediump_dmat2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<double, highp> highp_dmat2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<double, lowp> lowp_dmat2x2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<double, mediump> mediump_dmat2x2;
|
||||||
|
|
||||||
|
/// 2 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x2<double, highp> highp_dmat2x2;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 2 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x3<double, lowp> lowp_dmat2x3;
|
||||||
|
|
||||||
|
/// 2 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x3<double, mediump> mediump_dmat2x3;
|
||||||
|
|
||||||
|
/// 2 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x3<double, highp> highp_dmat2x3;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 2 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x4<double, lowp> lowp_dmat2x4;
|
||||||
|
|
||||||
|
/// 2 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x4<double, mediump> mediump_dmat2x4;
|
||||||
|
|
||||||
|
/// 2 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat2x4<double, highp> highp_dmat2x4;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 3 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x2<double, lowp> lowp_dmat3x2;
|
||||||
|
|
||||||
|
/// 3 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x2<double, mediump> mediump_dmat3x2;
|
||||||
|
|
||||||
|
/// 3 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x2<double, highp> highp_dmat3x2;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<float, lowp> lowp_dmat3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<double, mediump> mediump_dmat3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<double, highp> highp_dmat3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<double, lowp> lowp_dmat3x3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<double, mediump> mediump_dmat3x3;
|
||||||
|
|
||||||
|
/// 3 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x3<double, highp> highp_dmat3x3;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 3 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x4<double, lowp> lowp_dmat3x4;
|
||||||
|
|
||||||
|
/// 3 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x4<double, mediump> mediump_dmat3x4;
|
||||||
|
|
||||||
|
/// 3 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat3x4<double, highp> highp_dmat3x4;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 4 columns of 2 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x2<double, lowp> lowp_dmat4x2;
|
||||||
|
|
||||||
|
/// 4 columns of 2 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x2<double, mediump> mediump_dmat4x2;
|
||||||
|
|
||||||
|
/// 4 columns of 2 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x2<double, highp> highp_dmat4x2;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 4 columns of 3 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x3<double, lowp> lowp_dmat4x3;
|
||||||
|
|
||||||
|
/// 4 columns of 3 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x3<double, mediump> mediump_dmat4x3;
|
||||||
|
|
||||||
|
/// 4 columns of 3 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x3<double, highp> highp_dmat4x3;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
/// @addtogroup core_precision
|
||||||
|
/// @{
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<double, lowp> lowp_dmat4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<double, mediump> mediump_dmat4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<double, highp> highp_dmat4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of low precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<double, lowp> lowp_dmat4x4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of medium precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<double, mediump> mediump_dmat4x4;
|
||||||
|
|
||||||
|
/// 4 columns of 4 components matrix of high precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.7.2 Precision Qualifier</a>
|
||||||
|
typedef tmat4x4<double, highp> highp_dmat4x4;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
|
#if(defined(GLM_PRECISION_LOWP_DOUBLE))
|
||||||
|
typedef lowp_dmat2x2 dmat2x2;
|
||||||
|
typedef lowp_dmat2x3 dmat2x3;
|
||||||
|
typedef lowp_dmat2x4 dmat2x4;
|
||||||
|
typedef lowp_dmat3x2 dmat3x2;
|
||||||
|
typedef lowp_dmat3x3 dmat3x3;
|
||||||
|
typedef lowp_dmat3x4 dmat3x4;
|
||||||
|
typedef lowp_dmat4x2 dmat4x2;
|
||||||
|
typedef lowp_dmat4x3 dmat4x3;
|
||||||
|
typedef lowp_dmat4x4 dmat4x4;
|
||||||
|
#elif(defined(GLM_PRECISION_MEDIUMP_DOUBLE))
|
||||||
|
typedef mediump_dmat2x2 dmat2x2;
|
||||||
|
typedef mediump_dmat2x3 dmat2x3;
|
||||||
|
typedef mediump_dmat2x4 dmat2x4;
|
||||||
|
typedef mediump_dmat3x2 dmat3x2;
|
||||||
|
typedef mediump_dmat3x3 dmat3x3;
|
||||||
|
typedef mediump_dmat3x4 dmat3x4;
|
||||||
|
typedef mediump_dmat4x2 dmat4x2;
|
||||||
|
typedef mediump_dmat4x3 dmat4x3;
|
||||||
|
typedef mediump_dmat4x4 dmat4x4;
|
||||||
|
#else //defined(GLM_PRECISION_HIGHP_DOUBLE)
|
||||||
|
|
||||||
|
//! 2 * 2 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat2x2 dmat2;
|
||||||
|
|
||||||
|
//! 3 * 3 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat3x3 dmat3;
|
||||||
|
|
||||||
|
//! 4 * 4 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat4x4 dmat4;
|
||||||
|
|
||||||
|
//! 2 * 2 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat2x2 dmat2x2;
|
||||||
|
|
||||||
|
//! 2 * 3 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat2x3 dmat2x3;
|
||||||
|
|
||||||
|
//! 2 * 4 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat2x4 dmat2x4;
|
||||||
|
|
||||||
|
//! 3 * 2 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat3x2 dmat3x2;
|
||||||
|
|
||||||
|
/// 3 * 3 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat3x3 dmat3x3;
|
||||||
|
|
||||||
|
/// 3 * 4 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat3x4 dmat3x4;
|
||||||
|
|
||||||
|
/// 4 * 2 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat4x2 dmat4x2;
|
||||||
|
|
||||||
|
/// 4 * 3 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat4x3 dmat4x3;
|
||||||
|
|
||||||
|
/// 4 * 4 matrix of double-precision floating-point numbers.
|
||||||
|
///
|
||||||
|
/// @see <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.20.8.pdf">GLSL 4.20.8 specification, section 4.1.6 Matrices</a>
|
||||||
|
typedef highp_dmat4x4 dmat4x4;
|
||||||
|
|
||||||
|
#endif//GLM_PRECISION
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
}//namespace glm
|
32
extern/glm-0.9.7.5/include/glm/detail/type_mat.inl
vendored
Normal file
32
extern/glm-0.9.7.5/include/glm/detail/type_mat.inl
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat.inl
|
||||||
|
/// @date 2011-06-15 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
232
extern/glm-0.9.7.5/include/glm/detail/type_mat2x2.hpp
vendored
Normal file
232
extern/glm-0.9.7.5/include/glm/detail/type_mat2x2.hpp
vendored
Normal file
@ -0,0 +1,232 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat2x2.hpp
|
||||||
|
/// @date 2005-01-27 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat2x2
|
||||||
|
{
|
||||||
|
typedef tvec2<T, P> col_type;
|
||||||
|
typedef tvec2<T, P> row_type;
|
||||||
|
typedef tmat2x2<T, P> type;
|
||||||
|
typedef tmat2x2<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
friend tvec2<U, Q> operator/(tmat2x2<U, Q> const & m, tvec2<U, Q> const & v);
|
||||||
|
template <typename U, precision Q>
|
||||||
|
friend tvec2<U, Q> operator/(tvec2<U, Q> const & v, tmat2x2<U, Q> const & m);
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[2];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x2() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat2x2(tmat2x2<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat2x2(tmat2x2<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(T const & x);
|
||||||
|
GLM_FUNC_DECL tmat2x2(
|
||||||
|
T const & x1, T const & y1,
|
||||||
|
T const & x2, T const & y2);
|
||||||
|
GLM_FUNC_DECL tmat2x2(
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template <typename U, typename V, typename M, typename N>
|
||||||
|
GLM_FUNC_DECL tmat2x2(
|
||||||
|
U const & x1, V const & y1,
|
||||||
|
M const & x2, N const & y2);
|
||||||
|
|
||||||
|
template <typename U, typename V>
|
||||||
|
GLM_FUNC_DECL tmat2x2(
|
||||||
|
tvec2<U, P> const & v1,
|
||||||
|
tvec2<V, P> const & v2);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat2x2(tmat2x2<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat3x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat2x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat3x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat2x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat4x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat3x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x2(tmat4x3<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator=(tmat2x2<T, P> const & v) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator=(tmat2x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator+=(tmat2x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator-=(tmat2x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator*=(tmat2x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator/=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator/=(tmat2x2<U, P> const & m);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator++ ();
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> & operator-- ();
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator+(tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator-(tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator+(tmat2x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator+(T const & s, tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator+(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator-(tmat2x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator-(T const & s, tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator-(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator*(tmat2x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator*(T const & s, tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x2<T, P>::col_type operator*(tmat2x2<T, P> const & m, typename tmat2x2<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x2<T, P>::row_type operator*(typename tmat2x2<T, P>::col_type const & v, tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator*(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator*(tmat2x2<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator*(tmat2x2<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator/(tmat2x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator/(T const & s, tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x2<T, P>::col_type operator/(tmat2x2<T, P> const & m, typename tmat2x2<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x2<T, P>::row_type operator/(typename tmat2x2<T, P>::col_type const & v, tmat2x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator/(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
} //namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat2x2.inl"
|
||||||
|
#endif
|
557
extern/glm-0.9.7.5/include/glm/detail/type_mat2x2.inl
vendored
Normal file
557
extern/glm-0.9.7.5/include/glm/detail/type_mat2x2.inl
vendored
Normal file
@ -0,0 +1,557 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat2x2.inl
|
||||||
|
/// @date 2005-01-16 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> compute_inverse(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
T OneOverDeterminant = static_cast<T>(1) / (
|
||||||
|
+ m[0][0] * m[1][1]
|
||||||
|
- m[1][0] * m[0][1]);
|
||||||
|
|
||||||
|
tmat2x2<T, P> Inverse(
|
||||||
|
+ m[1][1] * OneOverDeterminant,
|
||||||
|
- m[0][1] * OneOverDeterminant,
|
||||||
|
- m[1][0] * OneOverDeterminant,
|
||||||
|
+ m[0][0] * OneOverDeterminant);
|
||||||
|
|
||||||
|
return Inverse;
|
||||||
|
}
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT)
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2()
|
||||||
|
{
|
||||||
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
||||||
|
this->value[0] = col_type(1, 0);
|
||||||
|
this->value[1] = col_type(0, 1);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat2x2<T, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(ctor)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(T const & s)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(s, 0);
|
||||||
|
this->value[1] = col_type(0, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2
|
||||||
|
(
|
||||||
|
T const & x0, T const & y0,
|
||||||
|
T const & x1, T const & y1
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(x0, y0);
|
||||||
|
this->value[1] = col_type(x1, y1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(col_type const & v0, col_type const & v1)
|
||||||
|
{
|
||||||
|
this->value[0] = v0;
|
||||||
|
this->value[1] = v1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Conversion constructors --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename X1, typename Y1, typename X2, typename Y2>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2
|
||||||
|
(
|
||||||
|
X1 const & x1, Y1 const & y1,
|
||||||
|
X2 const & x2, Y2 const & y2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(static_cast<T>(x1), value_type(y1));
|
||||||
|
this->value[1] = col_type(static_cast<T>(x2), value_type(y2));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename V1, typename V2>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tvec2<V1, P> const & v1, tvec2<V2, P> const & v2)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(v1);
|
||||||
|
this->value[1] = col_type(v2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- mat2x2 matrix conversions --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat2x2<U, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>::tmat2x2(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat2x2<T, P>::size_type tmat2x2<T, P>::size() const
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::col_type & tmat2x2<T, P>::operator[](typename tmat2x2<T, P>::size_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::col_type const & tmat2x2<T, P>::operator[](typename tmat2x2<T, P>::size_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat2x2<T, P>::length_type tmat2x2<T, P>::length() const
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::col_type & tmat2x2<T, P>::operator[](typename tmat2x2<T, P>::length_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::col_type const & tmat2x2<T, P>::operator[](typename tmat2x2<T, P>::length_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary updatable operators --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator=(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator=(tmat2x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator+=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] += s;
|
||||||
|
this->value[1] += s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator+=(tmat2x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] += m[0];
|
||||||
|
this->value[1] += m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator-=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] -= s;
|
||||||
|
this->value[1] -= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator-=(tmat2x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] -= m[0];
|
||||||
|
this->value[1] -= m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator*=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] *= s;
|
||||||
|
this->value[1] *= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator*=(tmat2x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
return (*this = *this * m);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator/=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] /= s;
|
||||||
|
this->value[1] /= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator/=(tmat2x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
return (*this = *this * detail::compute_inverse<T, P>(m));
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator++()
|
||||||
|
{
|
||||||
|
++this->value[0];
|
||||||
|
++this->value[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P>& tmat2x2<T, P>::operator--()
|
||||||
|
{
|
||||||
|
--this->value[0];
|
||||||
|
--this->value[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> tmat2x2<T, P>::operator++(int)
|
||||||
|
{
|
||||||
|
tmat2x2<T, P> Result(*this);
|
||||||
|
++*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> tmat2x2<T, P>::operator--(int)
|
||||||
|
{
|
||||||
|
tmat2x2<T, P> Result(*this);
|
||||||
|
--*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator+(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator-(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
-m[0],
|
||||||
|
-m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator+(tmat2x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator+(T const & s, tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator+(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m1[0] + m2[0],
|
||||||
|
m1[1] + m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator-(tmat2x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m[0] - s,
|
||||||
|
m[1] - s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator-(T const & s, tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
s - m[0],
|
||||||
|
s - m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator-(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m1[0] - m2[0],
|
||||||
|
m1[1] - m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator*(tmat2x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator*(T const & s, tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::col_type operator*
|
||||||
|
(
|
||||||
|
tmat2x2<T, P> const & m,
|
||||||
|
typename tmat2x2<T, P>::row_type const & v
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return tvec2<T, P>(
|
||||||
|
m[0][0] * v.x + m[1][0] * v.y,
|
||||||
|
m[0][1] * v.x + m[1][1] * v.y);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::row_type operator*
|
||||||
|
(
|
||||||
|
typename tmat2x2<T, P>::col_type const & v,
|
||||||
|
tmat2x2<T, P> const & m
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return tvec2<T, P>(
|
||||||
|
v.x * m[0][0] + v.y * m[0][1],
|
||||||
|
v.x * m[1][0] + v.y * m[1][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator*(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator*(tmat2x2<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat4x2<T, P> operator*(tmat2x2<T, P> const & m1, tmat4x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat4x2<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1],
|
||||||
|
m1[0][0] * m2[3][0] + m1[1][0] * m2[3][1],
|
||||||
|
m1[0][1] * m2[3][0] + m1[1][1] * m2[3][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator/(tmat2x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
m[0] / s,
|
||||||
|
m[1] / s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator/(T const & s, tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x2<T, P>(
|
||||||
|
s / m[0],
|
||||||
|
s / m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::col_type operator/(tmat2x2<T, P> const & m, typename tmat2x2<T, P>::row_type const & v)
|
||||||
|
{
|
||||||
|
return detail::compute_inverse<T, P>(m) * v;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x2<T, P>::row_type operator/(typename tmat2x2<T, P>::col_type const & v, tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return v * detail::compute_inverse<T, P>(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator/(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
tmat2x2<T, P> m1_copy(m1);
|
||||||
|
return m1_copy /= m2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator==(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] == m2[0]) && (m1[1] == m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator!=(tmat2x2<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] != m2[0]) || (m1[1] != m2[1]);
|
||||||
|
}
|
||||||
|
} //namespace glm
|
209
extern/glm-0.9.7.5/include/glm/detail/type_mat2x3.hpp
vendored
Normal file
209
extern/glm-0.9.7.5/include/glm/detail/type_mat2x3.hpp
vendored
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat2x3.hpp
|
||||||
|
/// @date 2006-10-01 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat2x3
|
||||||
|
{
|
||||||
|
typedef tvec3<T, P> col_type;
|
||||||
|
typedef tvec2<T, P> row_type;
|
||||||
|
typedef tmat2x3<T, P> type;
|
||||||
|
typedef tmat3x2<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[2];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x3() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat2x3(tmat2x3<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat2x3(tmat2x3<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(T const & s);
|
||||||
|
GLM_FUNC_DECL tmat2x3(
|
||||||
|
T const & x0, T const & y0, T const & z0,
|
||||||
|
T const & x1, T const & y1, T const & z1);
|
||||||
|
GLM_FUNC_DECL tmat2x3(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template <typename X1, typename Y1, typename Z1, typename X2, typename Y2, typename Z2>
|
||||||
|
GLM_FUNC_DECL tmat2x3(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2);
|
||||||
|
|
||||||
|
template <typename U, typename V>
|
||||||
|
GLM_FUNC_DECL tmat2x3(
|
||||||
|
tvec3<U, P> const & v1,
|
||||||
|
tvec3<V, P> const & v2);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat2x3(tmat2x3<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat2x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat3x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat2x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat3x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat3x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat4x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x3(tmat4x3<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator=(tmat2x3<T, P> const & m) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator=(tmat2x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator+=(tmat2x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator-=(tmat2x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator/=(U s);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator++ ();
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> & operator-- ();
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator+(tmat2x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator-(tmat2x3<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator+(tmat2x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator+(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator-(tmat2x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator-(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator*(tmat2x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator*(T const & s, tmat2x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x3<T, P>::col_type operator*(tmat2x3<T, P> const & m, typename tmat2x3<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x3<T, P>::row_type operator*(typename tmat2x3<T, P>::col_type const & v, tmat2x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator*(tmat2x3<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator*(tmat2x3<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x3<T, P> operator*(tmat2x3<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator/(tmat2x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator/(T const & s, tmat2x3<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat2x3.inl"
|
||||||
|
#endif
|
515
extern/glm-0.9.7.5/include/glm/detail/type_mat2x3.inl
vendored
Normal file
515
extern/glm-0.9.7.5/include/glm/detail/type_mat2x3.inl
vendored
Normal file
@ -0,0 +1,515 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat2x3.inl
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT)
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3()
|
||||||
|
{
|
||||||
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
||||||
|
this->value[0] = col_type(1, 0, 0);
|
||||||
|
this->value[1] = col_type(0, 1, 0);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat2x3<T, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(ctor)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(T const & s)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(s, 0, 0);
|
||||||
|
this->value[1] = col_type(0, s, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3
|
||||||
|
(
|
||||||
|
T const & x0, T const & y0, T const & z0,
|
||||||
|
T const & x1, T const & y1, T const & z1
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(x0, y0, z0);
|
||||||
|
this->value[1] = col_type(x1, y1, z1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(col_type const & v0, col_type const & v1)
|
||||||
|
{
|
||||||
|
this->value[0] = v0;
|
||||||
|
this->value[1] = v1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Conversion constructors --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1, typename Z1,
|
||||||
|
typename X2, typename Y2, typename Z2>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3
|
||||||
|
(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1));
|
||||||
|
this->value[1] = col_type(static_cast<T>(x2), value_type(y2), value_type(z2));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename V1, typename V2>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tvec3<V1, P> const & v1, tvec3<V2, P> const & v2)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(v1);
|
||||||
|
this->value[1] = col_type(v2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat2x3<U, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>::tmat2x3(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat2x3<T, P>::size_type tmat2x3<T, P>::size() const
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x3<T, P>::col_type & tmat2x3<T, P>::operator[](typename tmat2x3<T, P>::size_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x3<T, P>::col_type const & tmat2x3<T, P>::operator[](typename tmat2x3<T, P>::size_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat2x3<T, P>::length_type tmat2x3<T, P>::length() const
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x3<T, P>::col_type & tmat2x3<T, P>::operator[](typename tmat2x3<T, P>::length_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x3<T, P>::col_type const & tmat2x3<T, P>::operator[](typename tmat2x3<T, P>::length_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary updatable operators --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>& tmat2x3<T, P>::operator=(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>& tmat2x3<T, P>::operator=(tmat2x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> & tmat2x3<T, P>::operator+=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] += s;
|
||||||
|
this->value[1] += s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>& tmat2x3<T, P>::operator+=(tmat2x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] += m[0];
|
||||||
|
this->value[1] += m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>& tmat2x3<T, P>::operator-=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] -= s;
|
||||||
|
this->value[1] -= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>& tmat2x3<T, P>::operator-=(tmat2x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] -= m[0];
|
||||||
|
this->value[1] -= m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P>& tmat2x3<T, P>::operator*=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] *= s;
|
||||||
|
this->value[1] *= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> & tmat2x3<T, P>::operator/=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] /= s;
|
||||||
|
this->value[1] /= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> & tmat2x3<T, P>::operator++()
|
||||||
|
{
|
||||||
|
++this->value[0];
|
||||||
|
++this->value[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> & tmat2x3<T, P>::operator--()
|
||||||
|
{
|
||||||
|
--this->value[0];
|
||||||
|
--this->value[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> tmat2x3<T, P>::operator++(int)
|
||||||
|
{
|
||||||
|
tmat2x3<T, P> Result(*this);
|
||||||
|
++*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> tmat2x3<T, P>::operator--(int)
|
||||||
|
{
|
||||||
|
tmat2x3<T, P> Result(*this);
|
||||||
|
--*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator+(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator-(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
-m[0],
|
||||||
|
-m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator+(tmat2x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator+(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m1[0] + m2[0],
|
||||||
|
m1[1] + m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator-(tmat2x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m[0] - s,
|
||||||
|
m[1] - s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator-(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m1[0] - m2[0],
|
||||||
|
m1[1] - m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator*(tmat2x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator*(T const & s, tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x3<T, P>::col_type operator*
|
||||||
|
(
|
||||||
|
tmat2x3<T, P> const & m,
|
||||||
|
typename tmat2x3<T, P>::row_type const & v)
|
||||||
|
{
|
||||||
|
return typename tmat2x3<T, P>::col_type(
|
||||||
|
m[0][0] * v.x + m[1][0] * v.y,
|
||||||
|
m[0][1] * v.x + m[1][1] * v.y,
|
||||||
|
m[0][2] * v.x + m[1][2] * v.y);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x3<T, P>::row_type operator*
|
||||||
|
(
|
||||||
|
typename tmat2x3<T, P>::col_type const & v,
|
||||||
|
tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return typename tmat2x3<T, P>::row_type(
|
||||||
|
v.x * m[0][0] + v.y * m[0][1] + v.z * m[0][2],
|
||||||
|
v.x * m[1][0] + v.y * m[1][1] + v.z * m[1][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator*(tmat2x3<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator*(tmat2x3<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
T SrcA00 = m1[0][0];
|
||||||
|
T SrcA01 = m1[0][1];
|
||||||
|
T SrcA02 = m1[0][2];
|
||||||
|
T SrcA10 = m1[1][0];
|
||||||
|
T SrcA11 = m1[1][1];
|
||||||
|
T SrcA12 = m1[1][2];
|
||||||
|
|
||||||
|
T SrcB00 = m2[0][0];
|
||||||
|
T SrcB01 = m2[0][1];
|
||||||
|
T SrcB10 = m2[1][0];
|
||||||
|
T SrcB11 = m2[1][1];
|
||||||
|
T SrcB20 = m2[2][0];
|
||||||
|
T SrcB21 = m2[2][1];
|
||||||
|
|
||||||
|
tmat3x3<T, P> Result(uninitialize);
|
||||||
|
Result[0][0] = SrcA00 * SrcB00 + SrcA10 * SrcB01;
|
||||||
|
Result[0][1] = SrcA01 * SrcB00 + SrcA11 * SrcB01;
|
||||||
|
Result[0][2] = SrcA02 * SrcB00 + SrcA12 * SrcB01;
|
||||||
|
Result[1][0] = SrcA00 * SrcB10 + SrcA10 * SrcB11;
|
||||||
|
Result[1][1] = SrcA01 * SrcB10 + SrcA11 * SrcB11;
|
||||||
|
Result[1][2] = SrcA02 * SrcB10 + SrcA12 * SrcB11;
|
||||||
|
Result[2][0] = SrcA00 * SrcB20 + SrcA10 * SrcB21;
|
||||||
|
Result[2][1] = SrcA01 * SrcB20 + SrcA11 * SrcB21;
|
||||||
|
Result[2][2] = SrcA02 * SrcB20 + SrcA12 * SrcB21;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat4x3<T, P> operator*(tmat2x3<T, P> const & m1, tmat4x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat4x3<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1],
|
||||||
|
m1[0][2] * m2[2][0] + m1[1][2] * m2[2][1],
|
||||||
|
m1[0][0] * m2[3][0] + m1[1][0] * m2[3][1],
|
||||||
|
m1[0][1] * m2[3][0] + m1[1][1] * m2[3][1],
|
||||||
|
m1[0][2] * m2[3][0] + m1[1][2] * m2[3][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator/(tmat2x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m[0] / s,
|
||||||
|
m[1] / s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator/(T const & s, tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
s / m[0],
|
||||||
|
s / m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator==(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] == m2[0]) && (m1[1] == m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator!=(tmat2x3<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] != m2[0]) || (m1[1] != m2[1]);
|
||||||
|
}
|
||||||
|
} //namespace glm
|
211
extern/glm-0.9.7.5/include/glm/detail/type_mat2x4.hpp
vendored
Normal file
211
extern/glm-0.9.7.5/include/glm/detail/type_mat2x4.hpp
vendored
Normal file
@ -0,0 +1,211 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat2x4.hpp
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat2x4
|
||||||
|
{
|
||||||
|
typedef tvec4<T, P> col_type;
|
||||||
|
typedef tvec2<T, P> row_type;
|
||||||
|
typedef tmat2x4<T, P> type;
|
||||||
|
typedef tmat4x2<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 4;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[2];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x4() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat2x4(tmat2x4<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat2x4(tmat2x4<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(T const & s);
|
||||||
|
GLM_FUNC_DECL tmat2x4(
|
||||||
|
T const & x0, T const & y0, T const & z0, T const & w0,
|
||||||
|
T const & x1, T const & y1, T const & z1, T const & w1);
|
||||||
|
GLM_FUNC_DECL tmat2x4(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1, typename Z1, typename W1,
|
||||||
|
typename X2, typename Y2, typename Z2, typename W2>
|
||||||
|
GLM_FUNC_DECL tmat2x4(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1, W1 const & w1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2);
|
||||||
|
|
||||||
|
template <typename U, typename V>
|
||||||
|
GLM_FUNC_DECL tmat2x4(
|
||||||
|
tvec4<U, P> const & v1,
|
||||||
|
tvec4<V, P> const & v2);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat2x4(tmat2x4<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat2x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat3x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat2x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat3x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat3x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat4x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat2x4(tmat4x3<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator=(tmat2x4<T, P> const & m) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator=(tmat2x4<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator+=(tmat2x4<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator-=(tmat2x4<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator/=(U s);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator++ ();
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> & operator-- ();
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator+(tmat2x4<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator-(tmat2x4<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator+(tmat2x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator+(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator-(tmat2x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator-(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator*(tmat2x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator*(T const & s, tmat2x4<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x4<T, P>::col_type operator*(tmat2x4<T, P> const & m, typename tmat2x4<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat2x4<T, P>::row_type operator*(typename tmat2x4<T, P>::col_type const & v, tmat2x4<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x4<T, P> operator*(tmat2x4<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator*(tmat2x4<T, P> const & m1, tmat2x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator*(tmat2x4<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator/(tmat2x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator/(T const & s, tmat2x4<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2);
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat2x4.inl"
|
||||||
|
#endif
|
524
extern/glm-0.9.7.5/include/glm/detail/type_mat2x4.inl
vendored
Normal file
524
extern/glm-0.9.7.5/include/glm/detail/type_mat2x4.inl
vendored
Normal file
@ -0,0 +1,524 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat2x4.inl
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT)
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4()
|
||||||
|
{
|
||||||
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
||||||
|
this->value[0] = col_type(1, 0, 0, 0);
|
||||||
|
this->value[1] = col_type(0, 1, 0, 0);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat2x4<T, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(ctor)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(T const & s)
|
||||||
|
{
|
||||||
|
value_type const Zero(0);
|
||||||
|
this->value[0] = col_type(s, Zero, Zero, Zero);
|
||||||
|
this->value[1] = col_type(Zero, s, Zero, Zero);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4
|
||||||
|
(
|
||||||
|
T const & x0, T const & y0, T const & z0, T const & w0,
|
||||||
|
T const & x1, T const & y1, T const & z1, T const & w1
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(x0, y0, z0, w0);
|
||||||
|
this->value[1] = col_type(x1, y1, z1, w1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(col_type const & v0, col_type const & v1)
|
||||||
|
{
|
||||||
|
this->value[0] = v0;
|
||||||
|
this->value[1] = v1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Conversion constructors --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1, typename Z1, typename W1,
|
||||||
|
typename X2, typename Y2, typename Z2, typename W2>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4
|
||||||
|
(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1, W1 const & w1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1), value_type(w1));
|
||||||
|
this->value[1] = col_type(static_cast<T>(x2), value_type(y2), value_type(z2), value_type(w2));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename V1, typename V2>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tvec4<V1, P> const & v1, tvec4<V2, P> const & v2)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(v1);
|
||||||
|
this->value[1] = col_type(v2);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat2x4<U, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0, 0);
|
||||||
|
this->value[1] = col_type(m[1], 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0, 0);
|
||||||
|
this->value[1] = col_type(m[1], 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0, 0);
|
||||||
|
this->value[1] = col_type(m[1], 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>::tmat2x4(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat2x4<T, P>::size_type tmat2x4<T, P>::size() const
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x4<T, P>::col_type & tmat2x4<T, P>::operator[](typename tmat2x4<T, P>::size_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x4<T, P>::col_type const & tmat2x4<T, P>::operator[](typename tmat2x4<T, P>::size_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat2x4<T, P>::length_type tmat2x4<T, P>::length() const
|
||||||
|
{
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x4<T, P>::col_type & tmat2x4<T, P>::operator[](typename tmat2x4<T, P>::length_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x4<T, P>::col_type const & tmat2x4<T, P>::operator[](typename tmat2x4<T, P>::length_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary updatable operators --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator=(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator=(tmat2x4<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator+=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] += s;
|
||||||
|
this->value[1] += s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator+=(tmat2x4<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] += m[0];
|
||||||
|
this->value[1] += m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator-=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] -= s;
|
||||||
|
this->value[1] -= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator-=(tmat2x4<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] -= m[0];
|
||||||
|
this->value[1] -= m[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator*=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] *= s;
|
||||||
|
this->value[1] *= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> & tmat2x4<T, P>::operator/=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] /= s;
|
||||||
|
this->value[1] /= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator++()
|
||||||
|
{
|
||||||
|
++this->value[0];
|
||||||
|
++this->value[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P>& tmat2x4<T, P>::operator--()
|
||||||
|
{
|
||||||
|
--this->value[0];
|
||||||
|
--this->value[1];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> tmat2x4<T, P>::operator++(int)
|
||||||
|
{
|
||||||
|
tmat2x4<T, P> Result(*this);
|
||||||
|
++*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> tmat2x4<T, P>::operator--(int)
|
||||||
|
{
|
||||||
|
tmat2x4<T, P> Result(*this);
|
||||||
|
--*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator+(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator-(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
-m[0],
|
||||||
|
-m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator+(tmat2x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator+(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m1[0] + m2[0],
|
||||||
|
m1[1] + m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator-(tmat2x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m[0] - s,
|
||||||
|
m[1] - s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator-(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m1[0] - m2[0],
|
||||||
|
m1[1] - m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator*(tmat2x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator*(T const & s, tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x4<T, P>::col_type operator*(tmat2x4<T, P> const & m, typename tmat2x4<T, P>::row_type const & v)
|
||||||
|
{
|
||||||
|
return typename tmat2x4<T, P>::col_type(
|
||||||
|
m[0][0] * v.x + m[1][0] * v.y,
|
||||||
|
m[0][1] * v.x + m[1][1] * v.y,
|
||||||
|
m[0][2] * v.x + m[1][2] * v.y,
|
||||||
|
m[0][3] * v.x + m[1][3] * v.y);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat2x4<T, P>::row_type operator*(typename tmat2x4<T, P>::col_type const & v, tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return typename tmat2x4<T, P>::row_type(
|
||||||
|
v.x * m[0][0] + v.y * m[0][1] + v.z * m[0][2] + v.w * m[0][3],
|
||||||
|
v.x * m[1][0] + v.y * m[1][1] + v.z * m[1][2] + v.w * m[1][3]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat4x4<T, P> operator*(tmat2x4<T, P> const & m1, tmat4x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
T SrcA00 = m1[0][0];
|
||||||
|
T SrcA01 = m1[0][1];
|
||||||
|
T SrcA02 = m1[0][2];
|
||||||
|
T SrcA03 = m1[0][3];
|
||||||
|
T SrcA10 = m1[1][0];
|
||||||
|
T SrcA11 = m1[1][1];
|
||||||
|
T SrcA12 = m1[1][2];
|
||||||
|
T SrcA13 = m1[1][3];
|
||||||
|
|
||||||
|
T SrcB00 = m2[0][0];
|
||||||
|
T SrcB01 = m2[0][1];
|
||||||
|
T SrcB10 = m2[1][0];
|
||||||
|
T SrcB11 = m2[1][1];
|
||||||
|
T SrcB20 = m2[2][0];
|
||||||
|
T SrcB21 = m2[2][1];
|
||||||
|
T SrcB30 = m2[3][0];
|
||||||
|
T SrcB31 = m2[3][1];
|
||||||
|
|
||||||
|
tmat4x4<T, P> Result(uninitialize);
|
||||||
|
Result[0][0] = SrcA00 * SrcB00 + SrcA10 * SrcB01;
|
||||||
|
Result[0][1] = SrcA01 * SrcB00 + SrcA11 * SrcB01;
|
||||||
|
Result[0][2] = SrcA02 * SrcB00 + SrcA12 * SrcB01;
|
||||||
|
Result[0][3] = SrcA03 * SrcB00 + SrcA13 * SrcB01;
|
||||||
|
Result[1][0] = SrcA00 * SrcB10 + SrcA10 * SrcB11;
|
||||||
|
Result[1][1] = SrcA01 * SrcB10 + SrcA11 * SrcB11;
|
||||||
|
Result[1][2] = SrcA02 * SrcB10 + SrcA12 * SrcB11;
|
||||||
|
Result[1][3] = SrcA03 * SrcB10 + SrcA13 * SrcB11;
|
||||||
|
Result[2][0] = SrcA00 * SrcB20 + SrcA10 * SrcB21;
|
||||||
|
Result[2][1] = SrcA01 * SrcB20 + SrcA11 * SrcB21;
|
||||||
|
Result[2][2] = SrcA02 * SrcB20 + SrcA12 * SrcB21;
|
||||||
|
Result[2][3] = SrcA03 * SrcB20 + SrcA13 * SrcB21;
|
||||||
|
Result[3][0] = SrcA00 * SrcB30 + SrcA10 * SrcB31;
|
||||||
|
Result[3][1] = SrcA01 * SrcB30 + SrcA11 * SrcB31;
|
||||||
|
Result[3][2] = SrcA02 * SrcB30 + SrcA12 * SrcB31;
|
||||||
|
Result[3][3] = SrcA03 * SrcB30 + SrcA13 * SrcB31;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator*(tmat2x4<T, P> const & m1, tmat2x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1],
|
||||||
|
m1[0][3] * m2[0][0] + m1[1][3] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1],
|
||||||
|
m1[0][3] * m2[1][0] + m1[1][3] * m2[1][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator*(tmat2x4<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1],
|
||||||
|
m1[0][3] * m2[0][0] + m1[1][3] * m2[0][1],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1],
|
||||||
|
m1[0][3] * m2[1][0] + m1[1][3] * m2[1][1],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1],
|
||||||
|
m1[0][2] * m2[2][0] + m1[1][2] * m2[2][1],
|
||||||
|
m1[0][3] * m2[2][0] + m1[1][3] * m2[2][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator/(tmat2x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m[0] / s,
|
||||||
|
m[1] / s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator/(T const & s, tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
s / m[0],
|
||||||
|
s / m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator==(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] == m2[0]) && (m1[1] == m2[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator!=(tmat2x4<T, P> const & m1, tmat2x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] != m2[0]) || (m1[1] != m2[1]);
|
||||||
|
}
|
||||||
|
} //namespace glm
|
216
extern/glm-0.9.7.5/include/glm/detail/type_mat3x2.hpp
vendored
Normal file
216
extern/glm-0.9.7.5/include/glm/detail/type_mat3x2.hpp
vendored
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat3x2.hpp
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat3x2
|
||||||
|
{
|
||||||
|
typedef tvec2<T, P> col_type;
|
||||||
|
typedef tvec3<T, P> row_type;
|
||||||
|
typedef tmat3x2<T, P> type;
|
||||||
|
typedef tmat2x3<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[3];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x2() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat3x2(tmat3x2<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat3x2(tmat3x2<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(T const & s);
|
||||||
|
GLM_FUNC_DECL tmat3x2(
|
||||||
|
T const & x0, T const & y0,
|
||||||
|
T const & x1, T const & y1,
|
||||||
|
T const & x2, T const & y2);
|
||||||
|
GLM_FUNC_DECL tmat3x2(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template<
|
||||||
|
typename X1, typename Y1,
|
||||||
|
typename X2, typename Y2,
|
||||||
|
typename X3, typename Y3>
|
||||||
|
GLM_FUNC_DECL tmat3x2(
|
||||||
|
X1 const & x1, Y1 const & y1,
|
||||||
|
X2 const & x2, Y2 const & y2,
|
||||||
|
X3 const & x3, Y3 const & y3);
|
||||||
|
|
||||||
|
template <typename V1, typename V2, typename V3>
|
||||||
|
GLM_FUNC_DECL tmat3x2(
|
||||||
|
tvec2<V1, P> const & v1,
|
||||||
|
tvec2<V2, P> const & v2,
|
||||||
|
tvec2<V3, P> const & v3);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat3x2(tmat3x2<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat2x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat3x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat2x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat2x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat3x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat4x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x2(tmat4x3<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator=(tmat3x2<T, P> const & m) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator=(tmat3x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator+=(tmat3x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator-=(tmat3x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator/=(U s);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator++ ();
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> & operator-- ();
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator+(tmat3x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator-(tmat3x2<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator+(tmat3x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator+(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator-(tmat3x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator-(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator*(tmat3x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator*(T const & s, tmat3x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x2<T, P>::col_type operator*(tmat3x2<T, P> const & m, typename tmat3x2<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x2<T, P>::row_type operator*(typename tmat3x2<T, P>::col_type const & v, tmat3x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator*(tmat3x2<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator*(tmat3x2<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator*(tmat3x2<T, P> const & m1, tmat4x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator/(tmat3x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator/(T const & s, tmat3x2<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2);
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat3x2.inl"
|
||||||
|
#endif
|
549
extern/glm-0.9.7.5/include/glm/detail/type_mat3x2.inl
vendored
Normal file
549
extern/glm-0.9.7.5/include/glm/detail/type_mat3x2.inl
vendored
Normal file
@ -0,0 +1,549 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat3x2.inl
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT)
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2()
|
||||||
|
{
|
||||||
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
||||||
|
this->value[0] = col_type(1, 0);
|
||||||
|
this->value[1] = col_type(0, 1);
|
||||||
|
this->value[2] = col_type(0, 0);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
this->value[2] = m.value[2];
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat3x2<T, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
this->value[2] = m.value[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(ctor)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(T const & s)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(s, 0);
|
||||||
|
this->value[1] = col_type(0, s);
|
||||||
|
this->value[2] = col_type(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2
|
||||||
|
(
|
||||||
|
T const & x0, T const & y0,
|
||||||
|
T const & x1, T const & y1,
|
||||||
|
T const & x2, T const & y2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(x0, y0);
|
||||||
|
this->value[1] = col_type(x1, y1);
|
||||||
|
this->value[2] = col_type(x2, y2);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2
|
||||||
|
(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = v0;
|
||||||
|
this->value[1] = v1;
|
||||||
|
this->value[2] = v2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Conversion constructors --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1,
|
||||||
|
typename X2, typename Y2,
|
||||||
|
typename X3, typename Y3>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2
|
||||||
|
(
|
||||||
|
X1 const & x1, Y1 const & y1,
|
||||||
|
X2 const & x2, Y2 const & y2,
|
||||||
|
X3 const & x3, Y3 const & y3
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(static_cast<T>(x1), value_type(y1));
|
||||||
|
this->value[1] = col_type(static_cast<T>(x2), value_type(y2));
|
||||||
|
this->value[2] = col_type(static_cast<T>(x3), value_type(y3));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename V1, typename V2, typename V3>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2
|
||||||
|
(
|
||||||
|
tvec2<V1, P> const & v1,
|
||||||
|
tvec2<V2, P> const & v2,
|
||||||
|
tvec2<V3, P> const & v3
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(v1);
|
||||||
|
this->value[1] = col_type(v2);
|
||||||
|
this->value[2] = col_type(v3);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat3x2<U, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = col_type(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(T(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(T(0));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>::tmat3x2(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat3x2<T, P>::size_type tmat3x2<T, P>::size() const
|
||||||
|
{
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x2<T, P>::col_type & tmat3x2<T, P>::operator[](typename tmat3x2<T, P>::size_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x2<T, P>::col_type const & tmat3x2<T, P>::operator[](typename tmat3x2<T, P>::size_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat3x2<T, P>::length_type tmat3x2<T, P>::length() const
|
||||||
|
{
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x2<T, P>::col_type & tmat3x2<T, P>::operator[](typename tmat3x2<T, P>::length_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x2<T, P>::col_type const & tmat3x2<T, P>::operator[](typename tmat3x2<T, P>::length_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary updatable operators --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator=(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator=(tmat3x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator+=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] += s;
|
||||||
|
this->value[1] += s;
|
||||||
|
this->value[2] += s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator+=(tmat3x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] += m[0];
|
||||||
|
this->value[1] += m[1];
|
||||||
|
this->value[2] += m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator-=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] -= s;
|
||||||
|
this->value[1] -= s;
|
||||||
|
this->value[2] -= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator-=(tmat3x2<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] -= m[0];
|
||||||
|
this->value[1] -= m[1];
|
||||||
|
this->value[2] -= m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator*=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] *= s;
|
||||||
|
this->value[1] *= s;
|
||||||
|
this->value[2] *= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> & tmat3x2<T, P>::operator/=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] /= s;
|
||||||
|
this->value[1] /= s;
|
||||||
|
this->value[2] /= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator++()
|
||||||
|
{
|
||||||
|
++this->value[0];
|
||||||
|
++this->value[1];
|
||||||
|
++this->value[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P>& tmat3x2<T, P>::operator--()
|
||||||
|
{
|
||||||
|
--this->value[0];
|
||||||
|
--this->value[1];
|
||||||
|
--this->value[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> tmat3x2<T, P>::operator++(int)
|
||||||
|
{
|
||||||
|
tmat3x2<T, P> Result(*this);
|
||||||
|
++*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> tmat3x2<T, P>::operator--(int)
|
||||||
|
{
|
||||||
|
tmat3x2<T, P> Result(*this);
|
||||||
|
--*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator+(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator-(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
-m[0],
|
||||||
|
-m[1],
|
||||||
|
-m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator+(tmat3x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s,
|
||||||
|
m[2] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator+(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m1[0] + m2[0],
|
||||||
|
m1[1] + m2[1],
|
||||||
|
m1[2] + m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator-(tmat3x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m[0] - s,
|
||||||
|
m[1] - s,
|
||||||
|
m[2] - s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator-(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m1[0] - m2[0],
|
||||||
|
m1[1] - m2[1],
|
||||||
|
m1[2] - m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator*(tmat3x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s,
|
||||||
|
m[2] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator*(T const & s, tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s,
|
||||||
|
m[2] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x2<T, P>::col_type operator*(tmat3x2<T, P> const & m, typename tmat3x2<T, P>::row_type const & v)
|
||||||
|
{
|
||||||
|
return typename tmat3x2<T, P>::col_type(
|
||||||
|
m[0][0] * v.x + m[1][0] * v.y + m[2][0] * v.z,
|
||||||
|
m[0][1] * v.x + m[1][1] * v.y + m[2][1] * v.z);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x2<T, P>::row_type operator*(typename tmat3x2<T, P>::col_type const & v, tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return typename tmat3x2<T, P>::row_type(
|
||||||
|
v.x * m[0][0] + v.y * m[0][1],
|
||||||
|
v.x * m[1][0] + v.y * m[1][1],
|
||||||
|
v.x * m[2][0] + v.y * m[2][1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x2<T, P> operator*(tmat3x2<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
const T SrcA00 = m1[0][0];
|
||||||
|
const T SrcA01 = m1[0][1];
|
||||||
|
const T SrcA10 = m1[1][0];
|
||||||
|
const T SrcA11 = m1[1][1];
|
||||||
|
const T SrcA20 = m1[2][0];
|
||||||
|
const T SrcA21 = m1[2][1];
|
||||||
|
|
||||||
|
const T SrcB00 = m2[0][0];
|
||||||
|
const T SrcB01 = m2[0][1];
|
||||||
|
const T SrcB02 = m2[0][2];
|
||||||
|
const T SrcB10 = m2[1][0];
|
||||||
|
const T SrcB11 = m2[1][1];
|
||||||
|
const T SrcB12 = m2[1][2];
|
||||||
|
|
||||||
|
tmat2x2<T, P> Result(uninitialize);
|
||||||
|
Result[0][0] = SrcA00 * SrcB00 + SrcA10 * SrcB01 + SrcA20 * SrcB02;
|
||||||
|
Result[0][1] = SrcA01 * SrcB00 + SrcA11 * SrcB01 + SrcA21 * SrcB02;
|
||||||
|
Result[1][0] = SrcA00 * SrcB10 + SrcA10 * SrcB11 + SrcA20 * SrcB12;
|
||||||
|
Result[1][1] = SrcA01 * SrcB10 + SrcA11 * SrcB11 + SrcA21 * SrcB12;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator*(tmat3x2<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1] + m1[2][0] * m2[0][2],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1] + m1[2][1] * m2[0][2],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1] + m1[2][0] * m2[1][2],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1] + m1[2][1] * m2[1][2],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1] + m1[2][0] * m2[2][2],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1] + m1[2][1] * m2[2][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat4x2<T, P> operator*(tmat3x2<T, P> const & m1, tmat4x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat4x2<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1] + m1[2][0] * m2[0][2],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1] + m1[2][1] * m2[0][2],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1] + m1[2][0] * m2[1][2],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1] + m1[2][1] * m2[1][2],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1] + m1[2][0] * m2[2][2],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1] + m1[2][1] * m2[2][2],
|
||||||
|
m1[0][0] * m2[3][0] + m1[1][0] * m2[3][1] + m1[2][0] * m2[3][2],
|
||||||
|
m1[0][1] * m2[3][0] + m1[1][1] * m2[3][1] + m1[2][1] * m2[3][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator/(tmat3x2<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
m[0] / s,
|
||||||
|
m[1] / s,
|
||||||
|
m[2] / s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x2<T, P> operator/(T const & s, tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x2<T, P>(
|
||||||
|
s / m[0],
|
||||||
|
s / m[1],
|
||||||
|
s / m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator==(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] == m2[0]) && (m1[1] == m2[1]) && (m1[2] == m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator!=(tmat3x2<T, P> const & m1, tmat3x2<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] != m2[0]) || (m1[1] != m2[1]) || (m1[2] != m2[2]);
|
||||||
|
}
|
||||||
|
} //namespace glm
|
239
extern/glm-0.9.7.5/include/glm/detail/type_mat3x3.hpp
vendored
Normal file
239
extern/glm-0.9.7.5/include/glm/detail/type_mat3x3.hpp
vendored
Normal file
@ -0,0 +1,239 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat3x3.hpp
|
||||||
|
/// @date 2005-01-27 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat3x3
|
||||||
|
{
|
||||||
|
typedef tvec3<T, P> col_type;
|
||||||
|
typedef tvec3<T, P> row_type;
|
||||||
|
typedef tmat3x3<T, P> type;
|
||||||
|
typedef tmat3x3<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
friend tvec3<U, Q> operator/(tmat3x3<U, Q> const & m, tvec3<U, Q> const & v);
|
||||||
|
template <typename U, precision Q>
|
||||||
|
friend tvec3<U, Q> operator/(tvec3<U, Q> const & v, tmat3x3<U, Q> const & m);
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[3];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x3() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat3x3(tmat3x3<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat3x3(tmat3x3<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(T const & s);
|
||||||
|
GLM_FUNC_DECL tmat3x3(
|
||||||
|
T const & x0, T const & y0, T const & z0,
|
||||||
|
T const & x1, T const & y1, T const & z1,
|
||||||
|
T const & x2, T const & y2, T const & z2);
|
||||||
|
GLM_FUNC_DECL tmat3x3(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template<
|
||||||
|
typename X1, typename Y1, typename Z1,
|
||||||
|
typename X2, typename Y2, typename Z2,
|
||||||
|
typename X3, typename Y3, typename Z3>
|
||||||
|
GLM_FUNC_DECL tmat3x3(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2,
|
||||||
|
X3 const & x3, Y3 const & y3, Z3 const & z3);
|
||||||
|
|
||||||
|
template <typename V1, typename V2, typename V3>
|
||||||
|
GLM_FUNC_DECL tmat3x3(
|
||||||
|
tvec3<V1, P> const & v1,
|
||||||
|
tvec3<V2, P> const & v2,
|
||||||
|
tvec3<V3, P> const & v3);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat3x3(tmat3x3<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat2x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat2x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat3x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat2x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat4x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat3x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x3(tmat4x3<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator=(tmat3x3<T, P> const & m) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator=(tmat3x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator+=(tmat3x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator-=(tmat3x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator*=(tmat3x3<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator/=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator/=(tmat3x3<U, P> const & m);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator++();
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> & operator--();
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator+(tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator-(tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator+(tmat3x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator+(T const & s, tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator+(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator-(tmat3x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator-(T const & s, tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator-(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator*(tmat3x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator*(T const & s, tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x3<T, P>::col_type operator*(tmat3x3<T, P> const & m, typename tmat3x3<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x3<T, P>::row_type operator*(typename tmat3x3<T, P>::col_type const & v, tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator*(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x3<T, P> operator*(tmat3x3<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x3<T, P> operator*(tmat3x3<T, P> const & m1, tmat4x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator/(tmat3x3<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator/(T const & s, tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x3<T, P>::col_type operator/(tmat3x3<T, P> const & m, typename tmat3x3<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x3<T, P>::row_type operator/(typename tmat3x3<T, P>::col_type const & v, tmat3x3<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x3<T, P> operator/(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat3x3.inl"
|
||||||
|
#endif
|
640
extern/glm-0.9.7.5/include/glm/detail/type_mat3x3.inl
vendored
Normal file
640
extern/glm-0.9.7.5/include/glm/detail/type_mat3x3.inl
vendored
Normal file
@ -0,0 +1,640 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat3x3.inl
|
||||||
|
/// @date 2005-01-27 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm{
|
||||||
|
namespace detail
|
||||||
|
{
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> compute_inverse(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
T OneOverDeterminant = static_cast<T>(1) / (
|
||||||
|
+ m[0][0] * (m[1][1] * m[2][2] - m[2][1] * m[1][2])
|
||||||
|
- m[1][0] * (m[0][1] * m[2][2] - m[2][1] * m[0][2])
|
||||||
|
+ m[2][0] * (m[0][1] * m[1][2] - m[1][1] * m[0][2]));
|
||||||
|
|
||||||
|
tmat3x3<T, P> Inverse(uninitialize);
|
||||||
|
Inverse[0][0] = + (m[1][1] * m[2][2] - m[2][1] * m[1][2]) * OneOverDeterminant;
|
||||||
|
Inverse[1][0] = - (m[1][0] * m[2][2] - m[2][0] * m[1][2]) * OneOverDeterminant;
|
||||||
|
Inverse[2][0] = + (m[1][0] * m[2][1] - m[2][0] * m[1][1]) * OneOverDeterminant;
|
||||||
|
Inverse[0][1] = - (m[0][1] * m[2][2] - m[2][1] * m[0][2]) * OneOverDeterminant;
|
||||||
|
Inverse[1][1] = + (m[0][0] * m[2][2] - m[2][0] * m[0][2]) * OneOverDeterminant;
|
||||||
|
Inverse[2][1] = - (m[0][0] * m[2][1] - m[2][0] * m[0][1]) * OneOverDeterminant;
|
||||||
|
Inverse[0][2] = + (m[0][1] * m[1][2] - m[1][1] * m[0][2]) * OneOverDeterminant;
|
||||||
|
Inverse[1][2] = - (m[0][0] * m[1][2] - m[1][0] * m[0][2]) * OneOverDeterminant;
|
||||||
|
Inverse[2][2] = + (m[0][0] * m[1][1] - m[1][0] * m[0][1]) * OneOverDeterminant;
|
||||||
|
|
||||||
|
return Inverse;
|
||||||
|
}
|
||||||
|
}//namespace detail
|
||||||
|
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT)
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3()
|
||||||
|
{
|
||||||
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
||||||
|
this->value[0] = col_type(1, 0, 0);
|
||||||
|
this->value[1] = col_type(0, 1, 0);
|
||||||
|
this->value[2] = col_type(0, 0, 1);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
this->value[2] = m.value[2];
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat3x3<T, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
this->value[2] = m.value[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(ctor)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(T const & s)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(s, 0, 0);
|
||||||
|
this->value[1] = col_type(0, s, 0);
|
||||||
|
this->value[2] = col_type(0, 0, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3
|
||||||
|
(
|
||||||
|
T const & x0, T const & y0, T const & z0,
|
||||||
|
T const & x1, T const & y1, T const & z1,
|
||||||
|
T const & x2, T const & y2, T const & z2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(x0, y0, z0);
|
||||||
|
this->value[1] = col_type(x1, y1, z1);
|
||||||
|
this->value[2] = col_type(x2, y2, z2);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3
|
||||||
|
(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = v0;
|
||||||
|
this->value[1] = v1;
|
||||||
|
this->value[2] = v2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Conversion constructors --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1, typename Z1,
|
||||||
|
typename X2, typename Y2, typename Z2,
|
||||||
|
typename X3, typename Y3, typename Z3>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3
|
||||||
|
(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2,
|
||||||
|
X3 const & x3, Y3 const & y3, Z3 const & z3
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1));
|
||||||
|
this->value[1] = col_type(static_cast<T>(x2), value_type(y2), value_type(z2));
|
||||||
|
this->value[2] = col_type(static_cast<T>(x3), value_type(y3), value_type(z3));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename V1, typename V2, typename V3>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3
|
||||||
|
(
|
||||||
|
tvec3<V1, P> const & v1,
|
||||||
|
tvec3<V2, P> const & v2,
|
||||||
|
tvec3<V3, P> const & v3
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(v1);
|
||||||
|
this->value[1] = col_type(v2);
|
||||||
|
this->value[2] = col_type(v3);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat3x3<U, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
this->value[2] = col_type(0, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = col_type(0, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
this->value[2] = col_type(m[2], 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(0, 0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
this->value[2] = col_type(m[2], 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P>::tmat3x3(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat3x3<T, P>::size_type tmat3x3<T, P>::size() const
|
||||||
|
{
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::col_type & tmat3x3<T, P>::operator[](typename tmat3x3<T, P>::size_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::col_type const & tmat3x3<T, P>::operator[](typename tmat3x3<T, P>::size_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat3x3<T, P>::length_type tmat3x3<T, P>::length() const
|
||||||
|
{
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::col_type & tmat3x3<T, P>::operator[](typename tmat3x3<T, P>::length_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::col_type const & tmat3x3<T, P>::operator[](typename tmat3x3<T, P>::length_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary updatable operators --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator=(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator=(tmat3x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator+=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] += s;
|
||||||
|
this->value[1] += s;
|
||||||
|
this->value[2] += s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator+=(tmat3x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] += m[0];
|
||||||
|
this->value[1] += m[1];
|
||||||
|
this->value[2] += m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator-=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] -= s;
|
||||||
|
this->value[1] -= s;
|
||||||
|
this->value[2] -= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator-=(tmat3x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] -= m[0];
|
||||||
|
this->value[1] -= m[1];
|
||||||
|
this->value[2] -= m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator*=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] *= s;
|
||||||
|
this->value[1] *= s;
|
||||||
|
this->value[2] *= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator*=(tmat3x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
return (*this = *this * m);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator/=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] /= s;
|
||||||
|
this->value[1] /= s;
|
||||||
|
this->value[2] /= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator/=(tmat3x3<U, P> const & m)
|
||||||
|
{
|
||||||
|
return (*this = *this * detail::compute_inverse<T, P>(m));
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator++()
|
||||||
|
{
|
||||||
|
++this->value[0];
|
||||||
|
++this->value[1];
|
||||||
|
++this->value[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> & tmat3x3<T, P>::operator--()
|
||||||
|
{
|
||||||
|
--this->value[0];
|
||||||
|
--this->value[1];
|
||||||
|
--this->value[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> tmat3x3<T, P>::operator++(int)
|
||||||
|
{
|
||||||
|
tmat3x3<T, P> Result(*this);
|
||||||
|
++*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> tmat3x3<T, P>::operator--(int)
|
||||||
|
{
|
||||||
|
tmat3x3<T, P> Result(*this);
|
||||||
|
--*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator+(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator-(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
-m[0],
|
||||||
|
-m[1],
|
||||||
|
-m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator+(tmat3x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s,
|
||||||
|
m[2] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator+(T const & s, tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s,
|
||||||
|
m[2] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator+(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m1[0] + m2[0],
|
||||||
|
m1[1] + m2[1],
|
||||||
|
m1[2] + m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator-(tmat3x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m[0] - s,
|
||||||
|
m[1] - s,
|
||||||
|
m[2] - s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator-(T const & s, tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
s - m[0],
|
||||||
|
s - m[1],
|
||||||
|
s - m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator-(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m1[0] - m2[0],
|
||||||
|
m1[1] - m2[1],
|
||||||
|
m1[2] - m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator*(tmat3x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s,
|
||||||
|
m[2] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator*(T const & s, tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s,
|
||||||
|
m[2] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::col_type operator*(tmat3x3<T, P> const & m, typename tmat3x3<T, P>::row_type const & v)
|
||||||
|
{
|
||||||
|
return typename tmat3x3<T, P>::col_type(
|
||||||
|
m[0][0] * v.x + m[1][0] * v.y + m[2][0] * v.z,
|
||||||
|
m[0][1] * v.x + m[1][1] * v.y + m[2][1] * v.z,
|
||||||
|
m[0][2] * v.x + m[1][2] * v.y + m[2][2] * v.z);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::row_type operator*(typename tmat3x3<T, P>::col_type const & v, tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return typename tmat3x3<T, P>::row_type(
|
||||||
|
m[0][0] * v.x + m[0][1] * v.y + m[0][2] * v.z,
|
||||||
|
m[1][0] * v.x + m[1][1] * v.y + m[1][2] * v.z,
|
||||||
|
m[2][0] * v.x + m[2][1] * v.y + m[2][2] * v.z);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator*(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
T const SrcA00 = m1[0][0];
|
||||||
|
T const SrcA01 = m1[0][1];
|
||||||
|
T const SrcA02 = m1[0][2];
|
||||||
|
T const SrcA10 = m1[1][0];
|
||||||
|
T const SrcA11 = m1[1][1];
|
||||||
|
T const SrcA12 = m1[1][2];
|
||||||
|
T const SrcA20 = m1[2][0];
|
||||||
|
T const SrcA21 = m1[2][1];
|
||||||
|
T const SrcA22 = m1[2][2];
|
||||||
|
|
||||||
|
T const SrcB00 = m2[0][0];
|
||||||
|
T const SrcB01 = m2[0][1];
|
||||||
|
T const SrcB02 = m2[0][2];
|
||||||
|
T const SrcB10 = m2[1][0];
|
||||||
|
T const SrcB11 = m2[1][1];
|
||||||
|
T const SrcB12 = m2[1][2];
|
||||||
|
T const SrcB20 = m2[2][0];
|
||||||
|
T const SrcB21 = m2[2][1];
|
||||||
|
T const SrcB22 = m2[2][2];
|
||||||
|
|
||||||
|
tmat3x3<T, P> Result(uninitialize);
|
||||||
|
Result[0][0] = SrcA00 * SrcB00 + SrcA10 * SrcB01 + SrcA20 * SrcB02;
|
||||||
|
Result[0][1] = SrcA01 * SrcB00 + SrcA11 * SrcB01 + SrcA21 * SrcB02;
|
||||||
|
Result[0][2] = SrcA02 * SrcB00 + SrcA12 * SrcB01 + SrcA22 * SrcB02;
|
||||||
|
Result[1][0] = SrcA00 * SrcB10 + SrcA10 * SrcB11 + SrcA20 * SrcB12;
|
||||||
|
Result[1][1] = SrcA01 * SrcB10 + SrcA11 * SrcB11 + SrcA21 * SrcB12;
|
||||||
|
Result[1][2] = SrcA02 * SrcB10 + SrcA12 * SrcB11 + SrcA22 * SrcB12;
|
||||||
|
Result[2][0] = SrcA00 * SrcB20 + SrcA10 * SrcB21 + SrcA20 * SrcB22;
|
||||||
|
Result[2][1] = SrcA01 * SrcB20 + SrcA11 * SrcB21 + SrcA21 * SrcB22;
|
||||||
|
Result[2][2] = SrcA02 * SrcB20 + SrcA12 * SrcB21 + SrcA22 * SrcB22;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x3<T, P> operator*(tmat3x3<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x3<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1] + m1[2][0] * m2[0][2],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1] + m1[2][1] * m2[0][2],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1] + m1[2][2] * m2[0][2],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1] + m1[2][0] * m2[1][2],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1] + m1[2][1] * m2[1][2],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1] + m1[2][2] * m2[1][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat4x3<T, P> operator*(tmat3x3<T, P> const & m1, tmat4x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat4x3<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1] + m1[2][0] * m2[0][2],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1] + m1[2][1] * m2[0][2],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1] + m1[2][2] * m2[0][2],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1] + m1[2][0] * m2[1][2],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1] + m1[2][1] * m2[1][2],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1] + m1[2][2] * m2[1][2],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1] + m1[2][0] * m2[2][2],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1] + m1[2][1] * m2[2][2],
|
||||||
|
m1[0][2] * m2[2][0] + m1[1][2] * m2[2][1] + m1[2][2] * m2[2][2],
|
||||||
|
m1[0][0] * m2[3][0] + m1[1][0] * m2[3][1] + m1[2][0] * m2[3][2],
|
||||||
|
m1[0][1] * m2[3][0] + m1[1][1] * m2[3][1] + m1[2][1] * m2[3][2],
|
||||||
|
m1[0][2] * m2[3][0] + m1[1][2] * m2[3][1] + m1[2][2] * m2[3][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator/(tmat3x3<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
m[0] / s,
|
||||||
|
m[1] / s,
|
||||||
|
m[2] / s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator/(T const & s, tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x3<T, P>(
|
||||||
|
s / m[0],
|
||||||
|
s / m[1],
|
||||||
|
s / m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::col_type operator/(tmat3x3<T, P> const & m, typename tmat3x3<T, P>::row_type const & v)
|
||||||
|
{
|
||||||
|
return detail::compute_inverse<T, P>(m) * v;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x3<T, P>::row_type operator/(typename tmat3x3<T, P>::col_type const & v, tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
return v * detail::compute_inverse<T, P>(m);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x3<T, P> operator/(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
tmat3x3<T, P> m1_copy(m1);
|
||||||
|
return m1_copy /= m2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator==(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] == m2[0]) && (m1[1] == m2[1]) && (m1[2] == m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator!=(tmat3x3<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] != m2[0]) || (m1[1] != m2[1]) || (m1[2] != m2[2]);
|
||||||
|
}
|
||||||
|
} //namespace glm
|
216
extern/glm-0.9.7.5/include/glm/detail/type_mat3x4.hpp
vendored
Normal file
216
extern/glm-0.9.7.5/include/glm/detail/type_mat3x4.hpp
vendored
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat3x4.hpp
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec3.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat3x4
|
||||||
|
{
|
||||||
|
typedef tvec4<T, P> col_type;
|
||||||
|
typedef tvec3<T, P> row_type;
|
||||||
|
typedef tmat3x4<T, P> type;
|
||||||
|
typedef tmat4x3<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 3;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 4;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[3];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x4() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat3x4(tmat3x4<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat3x4(tmat3x4<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(T const & s);
|
||||||
|
GLM_FUNC_DECL tmat3x4(
|
||||||
|
T const & x0, T const & y0, T const & z0, T const & w0,
|
||||||
|
T const & x1, T const & y1, T const & z1, T const & w1,
|
||||||
|
T const & x2, T const & y2, T const & z2, T const & w2);
|
||||||
|
GLM_FUNC_DECL tmat3x4(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template<
|
||||||
|
typename X1, typename Y1, typename Z1, typename W1,
|
||||||
|
typename X2, typename Y2, typename Z2, typename W2,
|
||||||
|
typename X3, typename Y3, typename Z3, typename W3>
|
||||||
|
GLM_FUNC_DECL tmat3x4(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1, W1 const & w1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2,
|
||||||
|
X3 const & x3, Y3 const & y3, Z3 const & z3, W3 const & w3);
|
||||||
|
|
||||||
|
template <typename V1, typename V2, typename V3>
|
||||||
|
GLM_FUNC_DECL tmat3x4(
|
||||||
|
tvec4<V1, P> const & v1,
|
||||||
|
tvec4<V2, P> const & v2,
|
||||||
|
tvec4<V3, P> const & v3);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat3x4(tmat3x4<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat2x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat3x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat2x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat3x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat2x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat4x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat3x4(tmat4x3<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator=(tmat3x4<T, P> const & m) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator=(tmat3x4<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator+=(tmat3x4<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator-=(tmat3x4<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator/=(U s);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator++();
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> & operator--();
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator+(tmat3x4<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator-(tmat3x4<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator+(tmat3x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator+(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator-(tmat3x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator-(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator*(tmat3x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator*(T const & s, tmat3x4<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x4<T, P>::col_type operator*(tmat3x4<T, P> const & m, typename tmat3x4<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat3x4<T, P>::row_type operator*(typename tmat3x4<T, P>::col_type const & v, tmat3x4<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x4<T, P> operator*(tmat3x4<T, P> const & m1, tmat4x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x4<T, P> operator*(tmat3x4<T, P> const & m1, tmat2x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator*(tmat3x4<T, P> const & m1, tmat3x3<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator/(tmat3x4<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x4<T, P> operator/(T const & s, tmat3x4<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2);
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat3x4.inl"
|
||||||
|
#endif
|
589
extern/glm-0.9.7.5/include/glm/detail/type_mat3x4.inl
vendored
Normal file
589
extern/glm-0.9.7.5/include/glm/detail/type_mat3x4.inl
vendored
Normal file
@ -0,0 +1,589 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat3x4.inl
|
||||||
|
/// @date 2006-08-05 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT)
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4()
|
||||||
|
{
|
||||||
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
||||||
|
this->value[0] = col_type(1, 0, 0, 0);
|
||||||
|
this->value[1] = col_type(0, 1, 0, 0);
|
||||||
|
this->value[2] = col_type(0, 0, 1, 0);
|
||||||
|
# endif
|
||||||
|
}
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
this->value[2] = m.value[2];
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat3x4<T, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m.value[0];
|
||||||
|
this->value[1] = m.value[1];
|
||||||
|
this->value[2] = m.value[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(ctor)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(T const & s)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(s, 0, 0, 0);
|
||||||
|
this->value[1] = col_type(0, s, 0, 0);
|
||||||
|
this->value[2] = col_type(0, 0, s, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4
|
||||||
|
(
|
||||||
|
T const & x0, T const & y0, T const & z0, T const & w0,
|
||||||
|
T const & x1, T const & y1, T const & z1, T const & w1,
|
||||||
|
T const & x2, T const & y2, T const & z2, T const & w2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(x0, y0, z0, w0);
|
||||||
|
this->value[1] = col_type(x1, y1, z1, w1);
|
||||||
|
this->value[2] = col_type(x2, y2, z2, w2);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4
|
||||||
|
(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = v0;
|
||||||
|
this->value[1] = v1;
|
||||||
|
this->value[2] = v2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Conversion constructors --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1, typename Z1, typename W1,
|
||||||
|
typename X2, typename Y2, typename Z2, typename W2,
|
||||||
|
typename X3, typename Y3, typename Z3, typename W3>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4
|
||||||
|
(
|
||||||
|
X1 const & x1, Y1 const & y1, Z1 const & z1, W1 const & w1,
|
||||||
|
X2 const & x2, Y2 const & y2, Z2 const & z2, W2 const & w2,
|
||||||
|
X3 const & x3, Y3 const & y3, Z3 const & z3, W3 const & w3
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(static_cast<T>(x1), value_type(y1), value_type(z1), value_type(w1));
|
||||||
|
this->value[1] = col_type(static_cast<T>(x2), value_type(y2), value_type(z2), value_type(w2));
|
||||||
|
this->value[2] = col_type(static_cast<T>(x3), value_type(y3), value_type(z3), value_type(w3));
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename V1, typename V2, typename V3>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4
|
||||||
|
(
|
||||||
|
tvec4<V1, P> const & v1,
|
||||||
|
tvec4<V2, P> const & v2,
|
||||||
|
tvec4<V3, P> const & v3
|
||||||
|
)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(v1);
|
||||||
|
this->value[1] = col_type(v2);
|
||||||
|
this->value[2] = col_type(v3);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat3x4<U, Q> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat2x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0, 0);
|
||||||
|
this->value[1] = col_type(m[1], 0, 0);
|
||||||
|
this->value[2] = col_type(0, 0, 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat3x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
this->value[2] = col_type(m[2], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat4x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat2x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
this->value[2] = col_type(0, 0, 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat3x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0, 0);
|
||||||
|
this->value[1] = col_type(m[1], 0, 0);
|
||||||
|
this->value[2] = col_type(m[2], 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat2x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0]);
|
||||||
|
this->value[1] = col_type(m[1]);
|
||||||
|
this->value[2] = col_type(0, 0, 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat4x2<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0, 0);
|
||||||
|
this->value[1] = col_type(m[1], 0, 0);
|
||||||
|
this->value[2] = col_type(m[2], 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>::tmat3x4(tmat4x3<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = col_type(m[0], 0);
|
||||||
|
this->value[1] = col_type(m[1], 0);
|
||||||
|
this->value[2] = col_type(m[2], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat3x4<T, P>::size_type tmat3x4<T, P>::size() const
|
||||||
|
{
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x4<T, P>::col_type & tmat3x4<T, P>::operator[](typename tmat3x4<T, P>::size_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x4<T, P>::col_type const & tmat3x4<T, P>::operator[](typename tmat3x4<T, P>::size_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->size());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# else
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER GLM_CONSTEXPR typename tmat3x4<T, P>::length_type tmat3x4<T, P>::length() const
|
||||||
|
{
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x4<T, P>::col_type & tmat3x4<T, P>::operator[](typename tmat3x4<T, P>::length_type i)
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x4<T, P>::col_type const & tmat3x4<T, P>::operator[](typename tmat3x4<T, P>::length_type i) const
|
||||||
|
{
|
||||||
|
assert(i < this->length());
|
||||||
|
return this->value[i];
|
||||||
|
}
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary updatable operators --
|
||||||
|
|
||||||
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator=(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator=(tmat3x4<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] = m[0];
|
||||||
|
this->value[1] = m[1];
|
||||||
|
this->value[2] = m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator+=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] += s;
|
||||||
|
this->value[1] += s;
|
||||||
|
this->value[2] += s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator+=(tmat3x4<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] += m[0];
|
||||||
|
this->value[1] += m[1];
|
||||||
|
this->value[2] += m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator-=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] -= s;
|
||||||
|
this->value[1] -= s;
|
||||||
|
this->value[2] -= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator-=(tmat3x4<U, P> const & m)
|
||||||
|
{
|
||||||
|
this->value[0] -= m[0];
|
||||||
|
this->value[1] -= m[1];
|
||||||
|
this->value[2] -= m[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator*=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] *= s;
|
||||||
|
this->value[1] *= s;
|
||||||
|
this->value[2] *= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> & tmat3x4<T, P>::operator/=(U s)
|
||||||
|
{
|
||||||
|
this->value[0] /= s;
|
||||||
|
this->value[1] /= s;
|
||||||
|
this->value[2] /= s;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator++()
|
||||||
|
{
|
||||||
|
++this->value[0];
|
||||||
|
++this->value[1];
|
||||||
|
++this->value[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P>& tmat3x4<T, P>::operator--()
|
||||||
|
{
|
||||||
|
--this->value[0];
|
||||||
|
--this->value[1];
|
||||||
|
--this->value[2];
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> tmat3x4<T, P>::operator++(int)
|
||||||
|
{
|
||||||
|
tmat3x4<T, P> Result(*this);
|
||||||
|
++*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> tmat3x4<T, P>::operator--(int)
|
||||||
|
{
|
||||||
|
tmat3x4<T, P> Result(*this);
|
||||||
|
--*this;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator+(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator-(tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
-m[0],
|
||||||
|
-m[1],
|
||||||
|
-m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Binary arithmetic operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator+(tmat3x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m[0] + s,
|
||||||
|
m[1] + s,
|
||||||
|
m[2] + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator+(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m1[0] + m2[0],
|
||||||
|
m1[1] + m2[1],
|
||||||
|
m1[2] + m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator-(tmat3x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m[0] - s,
|
||||||
|
m[1] - s,
|
||||||
|
m[2] - s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator-(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m1[0] - m2[0],
|
||||||
|
m1[1] - m2[1],
|
||||||
|
m1[2] - m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator*(tmat3x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s,
|
||||||
|
m[2] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator*(T const & s, tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m[0] * s,
|
||||||
|
m[1] * s,
|
||||||
|
m[2] * s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x4<T, P>::col_type operator*
|
||||||
|
(
|
||||||
|
tmat3x4<T, P> const & m,
|
||||||
|
typename tmat3x4<T, P>::row_type const & v
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return typename tmat3x4<T, P>::col_type(
|
||||||
|
m[0][0] * v.x + m[1][0] * v.y + m[2][0] * v.z,
|
||||||
|
m[0][1] * v.x + m[1][1] * v.y + m[2][1] * v.z,
|
||||||
|
m[0][2] * v.x + m[1][2] * v.y + m[2][2] * v.z,
|
||||||
|
m[0][3] * v.x + m[1][3] * v.y + m[2][3] * v.z);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER typename tmat3x4<T, P>::row_type operator*
|
||||||
|
(
|
||||||
|
typename tmat3x4<T, P>::col_type const & v,
|
||||||
|
tmat3x4<T, P> const & m
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return typename tmat3x4<T, P>::row_type(
|
||||||
|
v.x * m[0][0] + v.y * m[0][1] + v.z * m[0][2] + v.w * m[0][3],
|
||||||
|
v.x * m[1][0] + v.y * m[1][1] + v.z * m[1][2] + v.w * m[1][3],
|
||||||
|
v.x * m[2][0] + v.y * m[2][1] + v.z * m[2][2] + v.w * m[2][3]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat4x4<T, P> operator*(tmat3x4<T, P> const & m1, tmat4x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
const T SrcA00 = m1[0][0];
|
||||||
|
const T SrcA01 = m1[0][1];
|
||||||
|
const T SrcA02 = m1[0][2];
|
||||||
|
const T SrcA03 = m1[0][3];
|
||||||
|
const T SrcA10 = m1[1][0];
|
||||||
|
const T SrcA11 = m1[1][1];
|
||||||
|
const T SrcA12 = m1[1][2];
|
||||||
|
const T SrcA13 = m1[1][3];
|
||||||
|
const T SrcA20 = m1[2][0];
|
||||||
|
const T SrcA21 = m1[2][1];
|
||||||
|
const T SrcA22 = m1[2][2];
|
||||||
|
const T SrcA23 = m1[2][3];
|
||||||
|
|
||||||
|
const T SrcB00 = m2[0][0];
|
||||||
|
const T SrcB01 = m2[0][1];
|
||||||
|
const T SrcB02 = m2[0][2];
|
||||||
|
const T SrcB10 = m2[1][0];
|
||||||
|
const T SrcB11 = m2[1][1];
|
||||||
|
const T SrcB12 = m2[1][2];
|
||||||
|
const T SrcB20 = m2[2][0];
|
||||||
|
const T SrcB21 = m2[2][1];
|
||||||
|
const T SrcB22 = m2[2][2];
|
||||||
|
const T SrcB30 = m2[3][0];
|
||||||
|
const T SrcB31 = m2[3][1];
|
||||||
|
const T SrcB32 = m2[3][2];
|
||||||
|
|
||||||
|
tmat4x4<T, P> Result(uninitialize);
|
||||||
|
Result[0][0] = SrcA00 * SrcB00 + SrcA10 * SrcB01 + SrcA20 * SrcB02;
|
||||||
|
Result[0][1] = SrcA01 * SrcB00 + SrcA11 * SrcB01 + SrcA21 * SrcB02;
|
||||||
|
Result[0][2] = SrcA02 * SrcB00 + SrcA12 * SrcB01 + SrcA22 * SrcB02;
|
||||||
|
Result[0][3] = SrcA03 * SrcB00 + SrcA13 * SrcB01 + SrcA23 * SrcB02;
|
||||||
|
Result[1][0] = SrcA00 * SrcB10 + SrcA10 * SrcB11 + SrcA20 * SrcB12;
|
||||||
|
Result[1][1] = SrcA01 * SrcB10 + SrcA11 * SrcB11 + SrcA21 * SrcB12;
|
||||||
|
Result[1][2] = SrcA02 * SrcB10 + SrcA12 * SrcB11 + SrcA22 * SrcB12;
|
||||||
|
Result[1][3] = SrcA03 * SrcB10 + SrcA13 * SrcB11 + SrcA23 * SrcB12;
|
||||||
|
Result[2][0] = SrcA00 * SrcB20 + SrcA10 * SrcB21 + SrcA20 * SrcB22;
|
||||||
|
Result[2][1] = SrcA01 * SrcB20 + SrcA11 * SrcB21 + SrcA21 * SrcB22;
|
||||||
|
Result[2][2] = SrcA02 * SrcB20 + SrcA12 * SrcB21 + SrcA22 * SrcB22;
|
||||||
|
Result[2][3] = SrcA03 * SrcB20 + SrcA13 * SrcB21 + SrcA23 * SrcB22;
|
||||||
|
Result[3][0] = SrcA00 * SrcB30 + SrcA10 * SrcB31 + SrcA20 * SrcB32;
|
||||||
|
Result[3][1] = SrcA01 * SrcB30 + SrcA11 * SrcB31 + SrcA21 * SrcB32;
|
||||||
|
Result[3][2] = SrcA02 * SrcB30 + SrcA12 * SrcB31 + SrcA22 * SrcB32;
|
||||||
|
Result[3][3] = SrcA03 * SrcB30 + SrcA13 * SrcB31 + SrcA23 * SrcB32;
|
||||||
|
return Result;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat2x4<T, P> operator*(tmat3x4<T, P> const & m1, tmat2x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat2x4<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1] + m1[2][0] * m2[0][2],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1] + m1[2][1] * m2[0][2],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1] + m1[2][2] * m2[0][2],
|
||||||
|
m1[0][3] * m2[0][0] + m1[1][3] * m2[0][1] + m1[2][3] * m2[0][2],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1] + m1[2][0] * m2[1][2],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1] + m1[2][1] * m2[1][2],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1] + m1[2][2] * m2[1][2],
|
||||||
|
m1[0][3] * m2[1][0] + m1[1][3] * m2[1][1] + m1[2][3] * m2[1][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator*(tmat3x4<T, P> const & m1, tmat3x3<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m1[0][0] * m2[0][0] + m1[1][0] * m2[0][1] + m1[2][0] * m2[0][2],
|
||||||
|
m1[0][1] * m2[0][0] + m1[1][1] * m2[0][1] + m1[2][1] * m2[0][2],
|
||||||
|
m1[0][2] * m2[0][0] + m1[1][2] * m2[0][1] + m1[2][2] * m2[0][2],
|
||||||
|
m1[0][3] * m2[0][0] + m1[1][3] * m2[0][1] + m1[2][3] * m2[0][2],
|
||||||
|
m1[0][0] * m2[1][0] + m1[1][0] * m2[1][1] + m1[2][0] * m2[1][2],
|
||||||
|
m1[0][1] * m2[1][0] + m1[1][1] * m2[1][1] + m1[2][1] * m2[1][2],
|
||||||
|
m1[0][2] * m2[1][0] + m1[1][2] * m2[1][1] + m1[2][2] * m2[1][2],
|
||||||
|
m1[0][3] * m2[1][0] + m1[1][3] * m2[1][1] + m1[2][3] * m2[1][2],
|
||||||
|
m1[0][0] * m2[2][0] + m1[1][0] * m2[2][1] + m1[2][0] * m2[2][2],
|
||||||
|
m1[0][1] * m2[2][0] + m1[1][1] * m2[2][1] + m1[2][1] * m2[2][2],
|
||||||
|
m1[0][2] * m2[2][0] + m1[1][2] * m2[2][1] + m1[2][2] * m2[2][2],
|
||||||
|
m1[0][3] * m2[2][0] + m1[1][3] * m2[2][1] + m1[2][3] * m2[2][2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator/(tmat3x4<T, P> const & m, T const & s)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
m[0] / s,
|
||||||
|
m[1] / s,
|
||||||
|
m[2] / s);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER tmat3x4<T, P> operator/(T const & s, tmat3x4<T, P> const & m)
|
||||||
|
{
|
||||||
|
return tmat3x4<T, P>(
|
||||||
|
s / m[0],
|
||||||
|
s / m[1],
|
||||||
|
s / m[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator==(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] == m2[0]) && (m1[1] == m2[1]) && (m1[2] == m2[2]);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_QUALIFIER bool operator!=(tmat3x4<T, P> const & m1, tmat3x4<T, P> const & m2)
|
||||||
|
{
|
||||||
|
return (m1[0] != m2[0]) || (m1[1] != m2[1]) || (m1[2] != m2[2]);
|
||||||
|
}
|
||||||
|
} //namespace glm
|
221
extern/glm-0.9.7.5/include/glm/detail/type_mat4x2.hpp
vendored
Normal file
221
extern/glm-0.9.7.5/include/glm/detail/type_mat4x2.hpp
vendored
Normal file
@ -0,0 +1,221 @@
|
|||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// OpenGL Mathematics (glm.g-truc.net)
|
||||||
|
///
|
||||||
|
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
|
||||||
|
/// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
/// of this software and associated documentation files (the "Software"), to deal
|
||||||
|
/// in the Software without restriction, including without limitation the rights
|
||||||
|
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
/// copies of the Software, and to permit persons to whom the Software is
|
||||||
|
/// furnished to do so, subject to the following conditions:
|
||||||
|
///
|
||||||
|
/// The above copyright notice and this permission notice shall be included in
|
||||||
|
/// all copies or substantial portions of the Software.
|
||||||
|
///
|
||||||
|
/// Restrictions:
|
||||||
|
/// By making use of the Software for military purposes, you choose to make
|
||||||
|
/// a Bunny unhappy.
|
||||||
|
///
|
||||||
|
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
/// THE SOFTWARE.
|
||||||
|
///
|
||||||
|
/// @ref core
|
||||||
|
/// @file glm/detail/type_mat4x2.hpp
|
||||||
|
/// @date 2006-10-01 / 2011-06-15
|
||||||
|
/// @author Christophe Riccio
|
||||||
|
///////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "../fwd.hpp"
|
||||||
|
#include "type_vec2.hpp"
|
||||||
|
#include "type_vec4.hpp"
|
||||||
|
#include "type_mat.hpp"
|
||||||
|
#include <limits>
|
||||||
|
#include <cstddef>
|
||||||
|
|
||||||
|
namespace glm
|
||||||
|
{
|
||||||
|
template <typename T, precision P = defaultp>
|
||||||
|
struct tmat4x2
|
||||||
|
{
|
||||||
|
typedef tvec2<T, P> col_type;
|
||||||
|
typedef tvec4<T, P> row_type;
|
||||||
|
typedef tmat4x2<T, P> type;
|
||||||
|
typedef tmat2x4<T, P> transpose_type;
|
||||||
|
typedef T value_type;
|
||||||
|
|
||||||
|
# ifdef GLM_META_PROG_HELPERS
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t components = 4;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t cols = 4;
|
||||||
|
static GLM_RELAXED_CONSTEXPR length_t rows = 2;
|
||||||
|
static GLM_RELAXED_CONSTEXPR precision prec = P;
|
||||||
|
# endif//GLM_META_PROG_HELPERS
|
||||||
|
|
||||||
|
private:
|
||||||
|
col_type value[4];
|
||||||
|
|
||||||
|
public:
|
||||||
|
// -- Constructors --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat4x2() GLM_DEFAULT_CTOR;
|
||||||
|
GLM_FUNC_DECL tmat4x2(tmat4x2<T, P> const & m) GLM_DEFAULT;
|
||||||
|
template <precision Q>
|
||||||
|
GLM_FUNC_DECL tmat4x2(tmat4x2<T, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(ctor);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(T const & x);
|
||||||
|
GLM_FUNC_DECL tmat4x2(
|
||||||
|
T const & x0, T const & y0,
|
||||||
|
T const & x1, T const & y1,
|
||||||
|
T const & x2, T const & y2,
|
||||||
|
T const & x3, T const & y3);
|
||||||
|
GLM_FUNC_DECL tmat4x2(
|
||||||
|
col_type const & v0,
|
||||||
|
col_type const & v1,
|
||||||
|
col_type const & v2,
|
||||||
|
col_type const & v3);
|
||||||
|
|
||||||
|
// -- Conversions --
|
||||||
|
|
||||||
|
template <
|
||||||
|
typename X1, typename Y1,
|
||||||
|
typename X2, typename Y2,
|
||||||
|
typename X3, typename Y3,
|
||||||
|
typename X4, typename Y4>
|
||||||
|
GLM_FUNC_DECL tmat4x2(
|
||||||
|
X1 const & x1, Y1 const & y1,
|
||||||
|
X2 const & x2, Y2 const & y2,
|
||||||
|
X3 const & x3, Y3 const & y3,
|
||||||
|
X4 const & x4, Y4 const & y4);
|
||||||
|
|
||||||
|
template <typename V1, typename V2, typename V3, typename V4>
|
||||||
|
GLM_FUNC_DECL tmat4x2(
|
||||||
|
tvec2<V1, P> const & v1,
|
||||||
|
tvec2<V2, P> const & v2,
|
||||||
|
tvec2<V3, P> const & v3,
|
||||||
|
tvec2<V4, P> const & v4);
|
||||||
|
|
||||||
|
// -- Matrix conversions --
|
||||||
|
|
||||||
|
template <typename U, precision Q>
|
||||||
|
GLM_FUNC_DECL GLM_EXPLICIT tmat4x2(tmat4x2<U, Q> const & m);
|
||||||
|
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat2x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat3x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat4x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat2x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat3x2<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat2x4<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat4x3<T, P> const & x);
|
||||||
|
GLM_FUNC_DECL explicit tmat4x2(tmat3x4<T, P> const & x);
|
||||||
|
|
||||||
|
// -- Accesses --
|
||||||
|
|
||||||
|
# ifdef GLM_FORCE_SIZE_FUNC
|
||||||
|
typedef size_t size_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](size_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](size_type i) const;
|
||||||
|
# else
|
||||||
|
typedef length_t length_type;
|
||||||
|
GLM_FUNC_DECL GLM_CONSTEXPR length_type length() const;
|
||||||
|
|
||||||
|
GLM_FUNC_DECL col_type & operator[](length_type i);
|
||||||
|
GLM_FUNC_DECL col_type const & operator[](length_type i) const;
|
||||||
|
# endif//GLM_FORCE_SIZE_FUNC
|
||||||
|
|
||||||
|
// -- Unary arithmetic operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator=(tmat4x2<T, P> const & m) GLM_DEFAULT;
|
||||||
|
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator=(tmat4x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator+=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator+=(tmat4x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator-=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator-=(tmat4x2<U, P> const & m);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator*=(U s);
|
||||||
|
template <typename U>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator/=(U s);
|
||||||
|
|
||||||
|
// -- Increment and decrement operators --
|
||||||
|
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator++ ();
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> & operator-- ();
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator++(int);
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator--(int);
|
||||||
|
};
|
||||||
|
|
||||||
|
// -- Unary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator+(tmat4x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator-(tmat4x2<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Binary operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator+(tmat4x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator+(tmat4x2<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator-(tmat4x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator-(tmat4x2<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator*(tmat4x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator*(T const & s, tmat4x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat4x2<T, P>::col_type operator*(tmat4x2<T, P> const & m, typename tmat4x2<T, P>::row_type const & v);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL typename tmat4x2<T, P>::row_type operator*(typename tmat4x2<T, P>::col_type const & v, tmat4x2<T, P> const & m);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat2x2<T, P> operator*(tmat4x2<T, P> const & m1, tmat2x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat3x2<T, P> operator*(tmat4x2<T, P> const & m1, tmat3x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator*(tmat4x2<T, P> const & m1, tmat4x4<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator/(tmat4x2<T, P> const & m, T const & s);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL tmat4x2<T, P> operator/(T const & s, tmat4x2<T, P> const & m);
|
||||||
|
|
||||||
|
// -- Boolean operators --
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator==(tmat4x2<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
|
||||||
|
template <typename T, precision P>
|
||||||
|
GLM_FUNC_DECL bool operator!=(tmat4x2<T, P> const & m1, tmat4x2<T, P> const & m2);
|
||||||
|
}//namespace glm
|
||||||
|
|
||||||
|
#ifndef GLM_EXTERNAL_TEMPLATE
|
||||||
|
#include "type_mat4x2.inl"
|
||||||
|
#endif
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user