mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
Compare commits
24 Commits
fix-simd-s
...
suppress-s
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6183b213e2 | ||
|
|
768d36f4b6 | ||
|
|
2c39193016 | ||
|
|
16fcaf7fc0 | ||
|
|
530ec2d0f8 | ||
|
|
56d9e41465 | ||
|
|
610788bed1 | ||
|
|
2d6538ecec | ||
|
|
0de379c632 | ||
|
|
31cbd41e3b | ||
|
|
c691bc5bc0 | ||
|
|
7346e91574 | ||
|
|
0566a040c0 | ||
|
|
e6681e78c8 | ||
|
|
e17f115f91 | ||
|
|
2631d3b5ea | ||
|
|
9772948831 | ||
|
|
988dd13d61 | ||
|
|
ed09fb5819 | ||
|
|
c4a348ac71 | ||
|
|
7e9d2aa6a4 | ||
|
|
091102e2c1 | ||
|
|
50b1c189b1 | ||
|
|
44268d24f9 |
@@ -1,6 +1,6 @@
|
|||||||
cmake_minimum_required(VERSION 3.8.2)
|
cmake_minimum_required(VERSION 3.8.2)
|
||||||
project(cglm
|
project(cglm
|
||||||
VERSION 0.9.0
|
VERSION 0.9.1
|
||||||
HOMEPAGE_URL https://github.com/recp/cglm
|
HOMEPAGE_URL https://github.com/recp/cglm
|
||||||
DESCRIPTION "OpenGL Mathematics (glm) for C"
|
DESCRIPTION "OpenGL Mathematics (glm) for C"
|
||||||
LANGUAGES C
|
LANGUAGES C
|
||||||
|
|||||||
34
README.md
34
README.md
@@ -242,6 +242,38 @@ add_subdirectory(external/cglm/)
|
|||||||
# or you can use find_package to configure cglm
|
# or you can use find_package to configure cglm
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Use CMake to build for WebAssembly
|
||||||
|
|
||||||
|
Since math functions like `sinf` is used, this can not be targeted at `wasm32-unknown-unknown`, one of [wasi-sdk](https://github.com/WebAssembly/wasi-sdk) or [emscripten](https://github.com/emscripten-core/emsdk) should be used.
|
||||||
|
|
||||||
|
Should note that shared build is not yet supported for WebAssembly.
|
||||||
|
|
||||||
|
For [simd128](https://github.com/WebAssembly/simd) support, add `-msimd128` to `CMAKE_C_FLAGS`, in command line `-DCMAKE_C_FLAGS="-msimd128"`.
|
||||||
|
|
||||||
|
For tests, the cmake option `CGLM_USE_TEST` would still work, you'll need a wasi runtime for running tests, see our [ci config file](.github/workflows/cmake-wasm.yml) for a detailed example.
|
||||||
|
|
||||||
|
##### Use CMake and WASI SDK to build for WebAssembly
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ cmake .. \
|
||||||
|
-DCMAKE_TOOLCHAIN_FILE=/path/to/wasi-sdk-19.0/share/cmake/wasi-sdk.cmake \
|
||||||
|
-DWASI_SDK_PREFIX=/path/to/wasi-sdk-19.0
|
||||||
|
```
|
||||||
|
|
||||||
|
Where `/path/to/wasi-sdk-19.0/` is the path to extracted [wasi sdk](https://github.com/WebAssembly/wasi-sdk).
|
||||||
|
|
||||||
|
In this case it would by default make a static build.
|
||||||
|
|
||||||
|
##### Use CMake and Emscripten SDK to build for WebAssembly
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ emcmake cmake .. \
|
||||||
|
-DCMAKE_EXE_LINKER_FLAGS="-s STANDALONE_WASM" \
|
||||||
|
-DCGLM_STATIC=ON
|
||||||
|
```
|
||||||
|
|
||||||
|
The `emcmake` here is the cmake wrapper for Emscripten from installed [emsdk](https://github.com/emscripten-core/emsdk).
|
||||||
|
|
||||||
### Meson (All platforms)
|
### Meson (All platforms)
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@@ -257,7 +289,7 @@ $ sudo ninja install # [Optional]
|
|||||||
c_std=c11
|
c_std=c11
|
||||||
buildtype=release
|
buildtype=release
|
||||||
default_library=shared
|
default_library=shared
|
||||||
enable_tests=false # to run tests: ninja test
|
build_tests=true # to run tests: ninja test
|
||||||
```
|
```
|
||||||
#### Use with your Meson project
|
#### Use with your Meson project
|
||||||
* Example:
|
* Example:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
|
|||||||
|
|
||||||
# Description
|
# Description
|
||||||
s.name = "cglm"
|
s.name = "cglm"
|
||||||
s.version = "0.8.9"
|
s.version = "0.9.0"
|
||||||
s.summary = "📽 Highly Optimized Graphics Math (glm) for C"
|
s.summary = "📽 Highly Optimized Graphics Math (glm) for C"
|
||||||
s.description = <<-DESC
|
s.description = <<-DESC
|
||||||
cglm is math library for graphics programming for C. See the documentation or README for all features.
|
cglm is math library for graphics programming for C. See the documentation or README for all features.
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
#*****************************************************************************
|
#*****************************************************************************
|
||||||
|
|
||||||
AC_PREREQ([2.69])
|
AC_PREREQ([2.69])
|
||||||
AC_INIT([cglm], [0.9.0], [info@recp.me])
|
AC_INIT([cglm], [0.9.1], [info@recp.me])
|
||||||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects serial-tests])
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects serial-tests])
|
||||||
|
|
||||||
# Don't use the default cflags (-O2 -g), we set ours manually in Makefile.am.
|
# Don't use the default cflags (-O2 -g), we set ours manually in Makefile.am.
|
||||||
|
|||||||
@@ -1,59 +1,28 @@
|
|||||||
API documentation
|
📚 API documentation
|
||||||
================================
|
================================
|
||||||
|
|
||||||
Some functions may exist twice,
|
**cglm** provides a few APIs for similar functions.
|
||||||
once for their namespace and once for global namespace
|
|
||||||
to make easier to write very common functions
|
|
||||||
|
|
||||||
For instance, in general we use :code:`glm_vec3_dot` to get dot product
|
* 📦 **Inline API**: All functions are inline. You can include **cglm/cglm.h** header
|
||||||
of two **vec3**. Now we can also do this with :code:`glm_dot`,
|
to use this API. This is the default API. `glm_` is namespace/prefix for this API.
|
||||||
same for *_cross* and so on...
|
* 📦 **Call API**: All functions are not inline. You need to build *cglm* and link it
|
||||||
|
to your project. You can include **cglm/call.h** header to use this API. `glmc_` is namespace/prefix for this API.
|
||||||
|
|
||||||
The original function stays where it is, the function in global namespace
|
And also there are also sub categories:
|
||||||
of same name is just an alias, so there is no call version of those functions.
|
|
||||||
e.g there is no func like :code:`glmc_dot` because *glm_dot* is just alias for
|
|
||||||
:code:`glm_vec3_dot`
|
|
||||||
|
|
||||||
By including **cglm/cglm.h** header you will include all inline version
|
* 📦 **Array API**: Types are raw arrays and functions takes array as argument. You can include **cglm/cglm.h** header
|
||||||
of functions. Since functions in this header[s] are inline you don't need to
|
to use this API. This is the default API. `glm_` is namespace/prefix for this API.
|
||||||
build or link *cglm* against your project.
|
* 📦 **Struct API**: Types are union/struct and functions takes struct as argument and return structs if needed. You can include **cglm/struct.h** header
|
||||||
|
to use this API. This also includes **cglm/cglm.h** header.`glms_` is namespace/prefix for this API but your can omit or change it, see struct api docs.
|
||||||
|
* 📦 **SIMD API**: SIMD functions and helpers. `glmm_` is namespace/prefix for this API.
|
||||||
|
|
||||||
But by including **cglm/call.h** header you will include all *non-inline*
|
📌 Since struct api and call api are built top of inline array api, follow inline array api docs for individual functions.
|
||||||
version of functions. You need to build *cglm* and link it.
|
|
||||||
Follow the :doc:`build` documentation for this
|
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
:caption: API categories:
|
:caption: API documentations:
|
||||||
|
|
||||||
affine
|
api_inline_array
|
||||||
affine-mat
|
api_struct
|
||||||
affine2d
|
api_call
|
||||||
cam
|
api_simd
|
||||||
frustum
|
|
||||||
box
|
|
||||||
quat
|
|
||||||
euler
|
|
||||||
mat2
|
|
||||||
mat3
|
|
||||||
mat4
|
|
||||||
vec2
|
|
||||||
vec2-ext
|
|
||||||
vec3
|
|
||||||
vec3-ext
|
|
||||||
vec4
|
|
||||||
vec4-ext
|
|
||||||
ivec2
|
|
||||||
ivec3
|
|
||||||
ivec4
|
|
||||||
color
|
|
||||||
plane
|
|
||||||
project
|
|
||||||
util
|
|
||||||
io
|
|
||||||
call
|
|
||||||
sphere
|
|
||||||
curve
|
|
||||||
bezier
|
|
||||||
version
|
|
||||||
ray
|
|
||||||
|
|||||||
11
docs/source/api_call.rst
Normal file
11
docs/source/api_call.rst
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Call API
|
||||||
|
================================
|
||||||
|
|
||||||
|
Call API is pre-built API for making calls from library. It is built on top of the array api. **glmc_** is the namespace for the call api.
|
||||||
|
**c** stands for call.
|
||||||
|
|
||||||
|
You need to built cglm to use call api. See build instructions (:doc:`build`) for more details.
|
||||||
|
|
||||||
|
The functions except namespace **glmc_** are same as inline api. See ( :doc:`api_inline_array` ) for more details.
|
||||||
|
|
||||||
|
📌 In the future we can define option to forward inline functions or struct api to call api.
|
||||||
70
docs/source/api_inline_array.rst
Normal file
70
docs/source/api_inline_array.rst
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
Array API - Inline (Default)
|
||||||
|
========================================
|
||||||
|
|
||||||
|
This is the default API of *cglm*. All functions are forced to be inlined
|
||||||
|
and struct api, call api uses this inline api to share implementation.
|
||||||
|
|
||||||
|
📌 Call api is also array api but it is not inlined.
|
||||||
|
In the future there may be option to forward struct api to call api instead of inline api to reduce binary size if needed.
|
||||||
|
|
||||||
|
📌 **USE this API docs for similar functions in struct and call api**
|
||||||
|
|
||||||
|
📌 In struct api you can omit namespace e.g :code:`glms_vec3_dot` can be called as :code:`vec3_dot` in struct api, see :doc:`struct-api` to configure struct api for more details.
|
||||||
|
📌 In struct api functions can return struct/union
|
||||||
|
📌 In struct api you can access items like **.x**, **.y**, **.z**, **.w**, **.r**, **.g**, **.b**, **.a**, **.m00**, **m01**...
|
||||||
|
|
||||||
|
Some functions may exist twice, once for their namespace and once for global namespace
|
||||||
|
to make easier to write very common functions
|
||||||
|
|
||||||
|
For instance, in general we use :code:`glm_vec3_dot` to get dot product
|
||||||
|
of two **vec3**. Now we can also do this with :code:`glm_dot`,
|
||||||
|
same for *_cross* and so on...
|
||||||
|
|
||||||
|
The original function stays where it is, the function in global namespace
|
||||||
|
of same name is just an alias, so there is no call version of those functions.
|
||||||
|
e.g there is no func like :code:`glmc_dot` because *glm_dot* is just alias for
|
||||||
|
:code:`glm_vec3_dot`
|
||||||
|
|
||||||
|
By including **cglm/cglm.h** header you will include all inline version
|
||||||
|
of functions. Since functions in this header[s] are inline you don't need to
|
||||||
|
build or link *cglm* against your project.
|
||||||
|
|
||||||
|
But by including **cglm/call.h** header you will include all *non-inline*
|
||||||
|
version of functions. You need to build *cglm* and link it.
|
||||||
|
Follow the :doc:`build` documentation for this
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
:caption: API categories:
|
||||||
|
|
||||||
|
affine
|
||||||
|
affine-mat
|
||||||
|
affine2d
|
||||||
|
cam
|
||||||
|
frustum
|
||||||
|
box
|
||||||
|
quat
|
||||||
|
euler
|
||||||
|
mat2
|
||||||
|
mat3
|
||||||
|
mat4
|
||||||
|
vec2
|
||||||
|
vec2-ext
|
||||||
|
vec3
|
||||||
|
vec3-ext
|
||||||
|
vec4
|
||||||
|
vec4-ext
|
||||||
|
ivec2
|
||||||
|
ivec3
|
||||||
|
ivec4
|
||||||
|
color
|
||||||
|
plane
|
||||||
|
project
|
||||||
|
util
|
||||||
|
io
|
||||||
|
call
|
||||||
|
sphere
|
||||||
|
curve
|
||||||
|
bezier
|
||||||
|
version
|
||||||
|
ray
|
||||||
12
docs/source/api_simd.rst
Normal file
12
docs/source/api_simd.rst
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
SIMD API
|
||||||
|
================================
|
||||||
|
|
||||||
|
SIMD api is special api for SIMD operations. **glmm_** prefix is used for SIMD operations in cglm. It is used in many places in cglm.
|
||||||
|
You can use it for your own SIMD operations too. In the future the api may be extended by time.
|
||||||
|
|
||||||
|
Supported SIMD architectures ( may vary by time )
|
||||||
|
|
||||||
|
* SSE / SSE2
|
||||||
|
* AVX
|
||||||
|
* NEON
|
||||||
|
* WASM 128
|
||||||
98
docs/source/api_struct.rst
Normal file
98
docs/source/api_struct.rst
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
Struct API
|
||||||
|
================================
|
||||||
|
|
||||||
|
Struct API is alternative API to array api to use **cglm** with improved type safety and easy to use.
|
||||||
|
Since struct api is built top of array api, every struct API is not documented here.
|
||||||
|
See array api documentation for more information for individual functions.
|
||||||
|
|
||||||
|
By default struct api adds `s` suffix to every type name e.g. vec3s, mat4s, versors etc.
|
||||||
|
Also struct api `s` suffix to namespace e.g. `glms_vec3_add`, `glms_mat4_mul` etc.
|
||||||
|
|
||||||
|
By starting v0.9.0, struct api namespace is configurable. We can omit **glms_** namespace or
|
||||||
|
even change it with custom name to move existing api integrations to **cglm** more easliy...
|
||||||
|
We can also add **s** to functin names if we want e.g. `glms_vec3_add()` -> `vec3_add()` or `vec3s_add()`.
|
||||||
|
|
||||||
|
By including **cglm/struct.h** header you will include all struct api. It will also include **cglm/cglm.h** too.
|
||||||
|
Since struct apis are inline you don't need to build or link *cglm* against
|
||||||
|
your project unless if you want to use pre-built call-api too.
|
||||||
|
|
||||||
|
Struct API is built top of array api. So you can mix them.
|
||||||
|
Use **.raw** union member to access raw array data to use it with array api.
|
||||||
|
|
||||||
|
Unlike array api ([0], [1], [0][0] ...), it is also possible to use struct api
|
||||||
|
with **.x**, **.y**, **.z**, **.w**, **.r**, **.g**, **.b**, **.a**, **.m00**, **m01**...
|
||||||
|
accessors to access individual elements/properties of vectors and matrices.
|
||||||
|
|
||||||
|
Struct API usage:
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
.. code-block:: c
|
||||||
|
|
||||||
|
#include <cglm/struct.h>
|
||||||
|
|
||||||
|
mat4s m1 = glms_mat4_identity(); /* init... */
|
||||||
|
mat4s m2 = glms_mat4_identity(); /* init... */
|
||||||
|
mat4s m3 = glms_mat4_mul(glms_mat4_mul(m1, m2), glms_mat4_mul(m3, m4));
|
||||||
|
|
||||||
|
vec3s v1 = { 1.0f, 0.0f, 0.0f };
|
||||||
|
vec3s v2 = { 0.0f, 1.0f, 0.0f };
|
||||||
|
vec4s v4 = { 0.0f, 1.0f, 0.0f, 0.0f };
|
||||||
|
vec4 v5a = { 0.0f, 1.0f, 0.0f, 0.0f };
|
||||||
|
|
||||||
|
mat4s m4 = glms_rotate(m3, M_PI_2,
|
||||||
|
glms_vec3_cross(glms_vec3_add(v1, v6)
|
||||||
|
glms_vec3_add(v1, v7)));
|
||||||
|
|
||||||
|
v1.x = 1.0f; v1.y = 0.0f; v1.z = 0.0f;
|
||||||
|
// or
|
||||||
|
v1.raw[0] = 1.0f; v1.raw[1] = 0.0f; v1.raw[2] = 0.0f;
|
||||||
|
|
||||||
|
/* use struct api with array api (mix them). */
|
||||||
|
/* use .raw to access array and use it with array api */
|
||||||
|
|
||||||
|
glm_vec4_add(m4.col[0].raw, v5a, m4.col[0].raw);
|
||||||
|
glm_mat4_mulv(m4.raw, v4.raw, v5a);
|
||||||
|
|
||||||
|
or omit `glms_` namespace completely (see options below):
|
||||||
|
|
||||||
|
.. code-block:: c
|
||||||
|
|
||||||
|
#define CGLM_OMIT_NS_FROM_STRUCT_API
|
||||||
|
|
||||||
|
#include <cglm/struct.h>
|
||||||
|
|
||||||
|
mat4s m1 = mat4_identity(); /* init... */
|
||||||
|
mat4s m2 = mat4_identity(); /* init... */
|
||||||
|
mat4s m3 = mat4_mul(mat4_mul(m1, m2), mat4_mul(m3, m4));
|
||||||
|
|
||||||
|
vec3s v1 = { 1.0f, 0.0f, 0.0f };
|
||||||
|
vec3s v2 = { 0.0f, 1.0f, 0.0f };
|
||||||
|
vec4s v4 = { 0.0f, 1.0f, 0.0f, 0.0f };
|
||||||
|
vec4 v5a = { 0.0f, 1.0f, 0.0f, 0.0f };
|
||||||
|
|
||||||
|
mat4s m4 = glms_rotate(m3, M_PI_2,
|
||||||
|
vec3_cross(vec3_add(v1, v6)
|
||||||
|
vec3_add(v1, v7)));
|
||||||
|
|
||||||
|
v1.x = 1.0f; v1.y = 0.0f; v1.z = 0.0f;
|
||||||
|
// or
|
||||||
|
v1.raw[0] = 1.0f; v1.raw[1] = 0.0f; v1.raw[2] = 0.0f;
|
||||||
|
|
||||||
|
/* use struct api with array api (mix them) */
|
||||||
|
glm_vec4_add(m4.col[0].raw, v5a, m4.col[0].raw);
|
||||||
|
glm_mat4_mulv(m4.raw, v4.raw, v5a);
|
||||||
|
|
||||||
|
Configuring the Struct API:
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
To configure the Struct API namespace, you can define the following macros before including the cglm/struct.h header:
|
||||||
|
|
||||||
|
- **CGLM_OMIT_NS_FROM_STRUCT_API**: omits CGLM_STRUCT_API_NS (`glms_`) namespace completely if there is sub namespace e.g `mat4_`, `vec4_` ... DEFAULT is not defined
|
||||||
|
- **CGLM_STRUCT_API_NS**: define name space for struct api, DEFAULT is **glms**
|
||||||
|
- **CGLM_STRUCT_API_NAME_SUFFIX**: define name suffix, DEFAULT is **empty** e.g defining it as #define CGLM_STRUCT_API_NAME_SUFFIX s will add s suffix to mat4_mul -> mat4s_mul
|
||||||
|
|
||||||
|
|
||||||
|
Detailed documentation for Struct API:
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Since struct api if built top of array api, see array api functions for more information about individual functions.
|
||||||
@@ -62,16 +62,16 @@ author = u'Recep Aslantas'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = u'0.9.0'
|
version = u'0.9.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = u'0.9.0'
|
release = u'0.9.1'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
#
|
#
|
||||||
# This is also used if you do content translation via gettext catalogs.
|
# This is also used if you do content translation via gettext catalogs.
|
||||||
# Usually you set "language" from the command line for these cases.
|
# Usually you set "language" from the command line for these cases.
|
||||||
language = None
|
language = 'en'
|
||||||
|
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
@@ -111,7 +111,7 @@ html_theme_options = {
|
|||||||
# Add any paths that contain custom static files (such as style sheets) here,
|
# Add any paths that contain custom static files (such as style sheets) here,
|
||||||
# relative to this directory. They are copied after the builtin static files,
|
# relative to this directory. They are copied after the builtin static files,
|
||||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||||
html_static_path = ['_static']
|
# html_static_path = ['_static']
|
||||||
|
|
||||||
|
|
||||||
# -- Options for HTMLHelp output ------------------------------------------
|
# -- Options for HTMLHelp output ------------------------------------------
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Features
|
Features
|
||||||
================================================================================
|
================================================================================
|
||||||
|
|
||||||
* **scalar** and **simd** (sse, avx, neon...) optimizations
|
* **scalar** and **simd** (sse, avx, neon, wasm...) optimizations
|
||||||
* option to use different clipspaces e.g. Left Handed, Zero-to-One... (currrently right handed negative-one is default)
|
* option to use different clipspaces e.g. Left Handed, Zero-to-One... (currrently right handed negative-one is default)
|
||||||
* array api and struct api, you can use arrays or structs.
|
* array api and struct api, you can use arrays or structs.
|
||||||
* general purpose matrix operations (mat4, mat3)
|
* general purpose matrix operations (mat4, mat3)
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ considered to be supported as optional.
|
|||||||
opengl
|
opengl
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 3
|
||||||
:caption: API:
|
:caption: API:
|
||||||
|
|
||||||
api
|
api
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ Functions:
|
|||||||
#. :c:func:`glm_mat2_swap_col`
|
#. :c:func:`glm_mat2_swap_col`
|
||||||
#. :c:func:`glm_mat2_swap_row`
|
#. :c:func:`glm_mat2_swap_row`
|
||||||
#. :c:func:`glm_mat2_rmc`
|
#. :c:func:`glm_mat2_rmc`
|
||||||
|
#. :c:func:`glm_mat2_make`
|
||||||
|
|
||||||
Functions documentation
|
Functions documentation
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
@@ -177,3 +178,13 @@ Functions documentation
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
scalar value e.g. Matrix1x1
|
scalar value e.g. Matrix1x1
|
||||||
|
|
||||||
|
.. c:function:: void glm_mat2_make(float * __restrict src, mat2 dest)
|
||||||
|
|
||||||
|
Create mat2 matrix from pointer
|
||||||
|
|
||||||
|
| NOTE: **@src** must contain 4 elements.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
| *[in]* **src** pointer to an array of floats
|
||||||
|
| *[out]* **dest** destination matrix2x2
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ Functions:
|
|||||||
#. :c:func:`glm_mat3_swap_col`
|
#. :c:func:`glm_mat3_swap_col`
|
||||||
#. :c:func:`glm_mat3_swap_row`
|
#. :c:func:`glm_mat3_swap_row`
|
||||||
#. :c:func:`glm_mat3_rmc`
|
#. :c:func:`glm_mat3_rmc`
|
||||||
|
#. :c:func:`glm_mat3_make`
|
||||||
|
|
||||||
Functions documentation
|
Functions documentation
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
@@ -187,3 +188,13 @@ Functions documentation
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
scalar value e.g. Matrix1x1
|
scalar value e.g. Matrix1x1
|
||||||
|
|
||||||
|
.. c:function:: void glm_mat3_make(float * __restrict src, mat3 dest)
|
||||||
|
|
||||||
|
Create mat3 matrix from pointer
|
||||||
|
|
||||||
|
| NOTE: **@src** must contain 9 elements.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
| *[in]* **src** pointer to an array of floats
|
||||||
|
| *[out]* **dest** destination matrix3x3
|
||||||
|
|||||||
@@ -47,6 +47,7 @@ Functions:
|
|||||||
#. :c:func:`glm_mat4_swap_col`
|
#. :c:func:`glm_mat4_swap_col`
|
||||||
#. :c:func:`glm_mat4_swap_row`
|
#. :c:func:`glm_mat4_swap_row`
|
||||||
#. :c:func:`glm_mat4_rmc`
|
#. :c:func:`glm_mat4_rmc`
|
||||||
|
#. :c:func:`glm_mat4_make`
|
||||||
|
|
||||||
Functions documentation
|
Functions documentation
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
@@ -302,3 +303,13 @@ Functions documentation
|
|||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
scalar value e.g. Matrix1x1
|
scalar value e.g. Matrix1x1
|
||||||
|
|
||||||
|
.. c:function:: void glm_mat4_make(float * __restrict src, mat4 dest)
|
||||||
|
|
||||||
|
Create mat4 matrix from pointer
|
||||||
|
|
||||||
|
| NOTE: **@src** must contain 16 elements.
|
||||||
|
|
||||||
|
Parameters:
|
||||||
|
| *[in]* **src** pointer to an array of floats
|
||||||
|
| *[out]* **dest** destination matrix4x4
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
.. default-domain:: C
|
.. default-domain:: C
|
||||||
|
|
||||||
Options
|
🛠️ Options
|
||||||
===============================================================================
|
===============================================================================
|
||||||
|
|
||||||
A few options are provided via macros.
|
A few options are provided via macros.
|
||||||
@@ -90,6 +90,16 @@ You have to extra options for dot product: **CGLM_SSE4_DOT** and **CGLM_SSE3_DOT
|
|||||||
|
|
||||||
otherwise cglm will use custom cglm's hadd functions which are optimized too.
|
otherwise cglm will use custom cglm's hadd functions which are optimized too.
|
||||||
|
|
||||||
|
Struct API Options
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
To configure the Struct API namespace, you can define the following macros before including the cglm/struct.h header:
|
||||||
|
|
||||||
|
- **CGLM_OMIT_NS_FROM_STRUCT_API**: omits CGLM_STRUCT_API_NS (`glms_`) namespace completely if there is sub namespace e.g `mat4_`, `vec4_` ... DEFAULT is not defined
|
||||||
|
- **CGLM_STRUCT_API_NS**: define name space for struct api, DEFAULT is **glms**
|
||||||
|
- **CGLM_STRUCT_API_NAME_SUFFIX**: define name suffix, DEFAULT is **empty** e.g defining it as #define CGLM_STRUCT_API_NAME_SUFFIX s will add s suffix to mat4_mul -> mat4s_mul
|
||||||
|
|
||||||
|
|
||||||
Print Options
|
Print Options
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|||||||
@@ -73,6 +73,10 @@ CGLM_EXPORT
|
|||||||
float
|
float
|
||||||
glmc_mat2_rmc(vec2 r, mat2 m, vec2 c);
|
glmc_mat2_rmc(vec2 r, mat2 m, vec2 c);
|
||||||
|
|
||||||
|
CGLM_EXPORT
|
||||||
|
void
|
||||||
|
glmc_mat2_make(float * __restrict src, mat2 dest);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -80,6 +80,10 @@ CGLM_EXPORT
|
|||||||
float
|
float
|
||||||
glmc_mat3_rmc(vec3 r, mat3 m, vec3 c);
|
glmc_mat3_rmc(vec3 r, mat3 m, vec3 c);
|
||||||
|
|
||||||
|
CGLM_EXPORT
|
||||||
|
void
|
||||||
|
glmc_mat3_make(float * __restrict src, mat3 dest);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -121,6 +121,10 @@ CGLM_EXPORT
|
|||||||
float
|
float
|
||||||
glmc_mat4_rmc(vec4 r, mat4 m, vec4 c);
|
glmc_mat4_rmc(vec4 r, mat4 m, vec4 c);
|
||||||
|
|
||||||
|
CGLM_EXPORT
|
||||||
|
void
|
||||||
|
glmc_mat4_make(float * __restrict src, mat4 dest);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
CGLM_INLINE void glm_vec3_print(vec3 vec, FILE *ostream);
|
CGLM_INLINE void glm_vec3_print(vec3 vec, FILE *ostream);
|
||||||
CGLM_INLINE void glm_ivec3_print(ivec3 vec, FILE *ostream);
|
CGLM_INLINE void glm_ivec3_print(ivec3 vec, FILE *ostream);
|
||||||
CGLM_INLINE void glm_versor_print(versor vec, FILE *ostream);
|
CGLM_INLINE void glm_versor_print(versor vec, FILE *ostream);
|
||||||
|
CGLM_INLINE void glm_arch_print(FILE *ostream);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -52,12 +53,20 @@
|
|||||||
# define CGLM_PRINT_MAX_TO_SHORT 1e5f
|
# define CGLM_PRINT_MAX_TO_SHORT 1e5f
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef CGLM_PRINT_COLOR
|
#ifndef GLM_TESTS_NO_COLORFUL_OUTPUT
|
||||||
# define CGLM_PRINT_COLOR "\033[36m"
|
# ifndef CGLM_PRINT_COLOR
|
||||||
#endif
|
# define CGLM_PRINT_COLOR "\033[36m"
|
||||||
|
# endif
|
||||||
#ifndef CGLM_PRINT_COLOR_RESET
|
# ifndef CGLM_PRINT_COLOR_RESET
|
||||||
# define CGLM_PRINT_COLOR_RESET "\033[0m"
|
# define CGLM_PRINT_COLOR_RESET "\033[0m"
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
# ifndef CGLM_PRINT_COLOR
|
||||||
|
# define CGLM_PRINT_COLOR
|
||||||
|
# endif
|
||||||
|
# ifndef CGLM_PRINT_COLOR_RESET
|
||||||
|
# define CGLM_PRINT_COLOR_RESET
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@@ -67,26 +76,40 @@
|
|||||||
*/
|
*/
|
||||||
CGLM_INLINE
|
CGLM_INLINE
|
||||||
void
|
void
|
||||||
glm_arch_print_name(FILE* __restrict ostream) {
|
glm_arch_print(FILE* __restrict ostream) {
|
||||||
|
fprintf(ostream, CGLM_PRINT_COLOR "arch: "
|
||||||
#if defined(CGLM_SIMD_WASM)
|
#if defined(CGLM_SIMD_WASM)
|
||||||
fprintf(ostream, CGLM_PRINT_COLOR "\ncglm arch: wasm SIMD128"
|
"wasm SIMD128"
|
||||||
"\n\n" CGLM_PRINT_COLOR_RESET);
|
|
||||||
#elif defined(CGLM_SIMD_x86)
|
#elif defined(CGLM_SIMD_x86)
|
||||||
fprintf(ostream, CGLM_PRINT_COLOR "\ncglm arch: x86 SSE*"
|
"x86 SSE* "
|
||||||
#ifdef __AVX__
|
# ifdef __AVX__
|
||||||
" AVX"
|
" AVX"
|
||||||
#endif
|
# endif
|
||||||
"\n\n" CGLM_PRINT_COLOR_RESET);
|
#elif defined(CGLM_SIMD_ARM)
|
||||||
#elif defined(CGLM_SIMD_ARM)
|
"arm"
|
||||||
fprintf(ostream, CGLM_PRINT_COLOR "\ncglm arch: arm"
|
# ifndef __ARM_NEON_FP
|
||||||
#ifndef __ARM_NEON_FP
|
|
||||||
" NEON_FP"
|
" NEON_FP"
|
||||||
#endif
|
# endif
|
||||||
#ifdef CGLM_ARM64
|
# ifdef CGLM_ARM64
|
||||||
" ARM64"
|
" ARM64"
|
||||||
|
# endif
|
||||||
|
#else
|
||||||
|
"uncommon"
|
||||||
#endif
|
#endif
|
||||||
"\n\n" CGLM_PRINT_COLOR_RESET);
|
CGLM_PRINT_COLOR_RESET);
|
||||||
#endif
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief prints current SIMD path in general
|
||||||
|
*
|
||||||
|
* @param[in] ostream stream to print e.g. stdout, stderr, FILE ...
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
void
|
||||||
|
glm_arch_print_name(FILE* __restrict ostream) {
|
||||||
|
fprintf(ostream, CGLM_PRINT_COLOR "\ncglm ");
|
||||||
|
glm_arch_print(ostream);
|
||||||
|
fprintf(ostream, "\n\n" CGLM_PRINT_COLOR_RESET);
|
||||||
}
|
}
|
||||||
|
|
||||||
CGLM_INLINE
|
CGLM_INLINE
|
||||||
@@ -369,6 +392,8 @@ glm_aabb_print(vec3 bbox[2],
|
|||||||
#define glm_vec2_print(v, s) (void)v; (void)s;
|
#define glm_vec2_print(v, s) (void)v; (void)s;
|
||||||
#define glm_versor_print(v, s) (void)v; (void)s;
|
#define glm_versor_print(v, s) (void)v; (void)s;
|
||||||
#define glm_aabb_print(v, t, s) (void)v; (void)t; (void)s;
|
#define glm_aabb_print(v, t, s) (void)v; (void)t; (void)s;
|
||||||
|
#define glm_arch_print(s) (void)s;
|
||||||
|
#define glm_arch_print_name(s) (void)s;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
#endif /* cglm_io_h */
|
#endif /* cglm_io_h */
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
CGLM_INLINE void glm_mat2_swap_col(mat2 mat, int col1, int col2)
|
CGLM_INLINE void glm_mat2_swap_col(mat2 mat, int col1, int col2)
|
||||||
CGLM_INLINE void glm_mat2_swap_row(mat2 mat, int row1, int row2)
|
CGLM_INLINE void glm_mat2_swap_row(mat2 mat, int row1, int row2)
|
||||||
CGLM_INLINE float glm_mat2_rmc(vec2 r, mat2 m, vec2 c)
|
CGLM_INLINE float glm_mat2_rmc(vec2 r, mat2 m, vec2 c)
|
||||||
|
CGLM_INLINE void glm_mat2_make(float * restrict src, mat2 dest)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef cglm_mat2_h
|
#ifndef cglm_mat2_h
|
||||||
@@ -345,4 +346,19 @@ glm_mat2_rmc(vec2 r, mat2 m, vec2 c) {
|
|||||||
return glm_vec2_dot(r, tmp);
|
return glm_vec2_dot(r, tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Create mat2 matrix from pointer
|
||||||
|
*
|
||||||
|
* @param[in] src pointer to an array of floats
|
||||||
|
* @param[out] dest matrix
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
void
|
||||||
|
glm_mat2_make(float * __restrict src, mat2 dest) {
|
||||||
|
dest[0][0] = src[0];
|
||||||
|
dest[0][1] = src[1];
|
||||||
|
dest[1][0] = src[2];
|
||||||
|
dest[1][1] = src[3];
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* cglm_mat2_h */
|
#endif /* cglm_mat2_h */
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
CGLM_INLINE void glm_mat3_swap_col(mat3 mat, int col1, int col2);
|
CGLM_INLINE void glm_mat3_swap_col(mat3 mat, int col1, int col2);
|
||||||
CGLM_INLINE void glm_mat3_swap_row(mat3 mat, int row1, int row2);
|
CGLM_INLINE void glm_mat3_swap_row(mat3 mat, int row1, int row2);
|
||||||
CGLM_INLINE float glm_mat3_rmc(vec3 r, mat3 m, vec3 c);
|
CGLM_INLINE float glm_mat3_rmc(vec3 r, mat3 m, vec3 c);
|
||||||
|
CGLM_INLINE void glm_mat3_make(float * restrict src, mat3 dest);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef cglm_mat3_h
|
#ifndef cglm_mat3_h
|
||||||
@@ -427,4 +428,26 @@ glm_mat3_rmc(vec3 r, mat3 m, vec3 c) {
|
|||||||
return glm_vec3_dot(r, tmp);
|
return glm_vec3_dot(r, tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Create mat3 matrix from pointer
|
||||||
|
*
|
||||||
|
* @param[in] src pointer to an array of floats
|
||||||
|
* @param[out] dest matrix
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
void
|
||||||
|
glm_mat3_make(float * __restrict src, mat3 dest) {
|
||||||
|
dest[0][0] = src[0];
|
||||||
|
dest[0][1] = src[1];
|
||||||
|
dest[0][2] = src[2];
|
||||||
|
|
||||||
|
dest[1][0] = src[3];
|
||||||
|
dest[1][1] = src[4];
|
||||||
|
dest[1][2] = src[5];
|
||||||
|
|
||||||
|
dest[2][0] = src[6];
|
||||||
|
dest[2][1] = src[7];
|
||||||
|
dest[2][2] = src[8];
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* cglm_mat3_h */
|
#endif /* cglm_mat3_h */
|
||||||
|
|||||||
@@ -43,6 +43,7 @@
|
|||||||
CGLM_INLINE void glm_mat4_swap_col(mat4 mat, int col1, int col2);
|
CGLM_INLINE void glm_mat4_swap_col(mat4 mat, int col1, int col2);
|
||||||
CGLM_INLINE void glm_mat4_swap_row(mat4 mat, int row1, int row2);
|
CGLM_INLINE void glm_mat4_swap_row(mat4 mat, int row1, int row2);
|
||||||
CGLM_INLINE float glm_mat4_rmc(vec4 r, mat4 m, vec4 c);
|
CGLM_INLINE float glm_mat4_rmc(vec4 r, mat4 m, vec4 c);
|
||||||
|
CGLM_INLINE void glm_mat4_make(float * restrict src, mat4 dest);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef cglm_mat_h
|
#ifndef cglm_mat_h
|
||||||
@@ -781,4 +782,24 @@ glm_mat4_rmc(vec4 r, mat4 m, vec4 c) {
|
|||||||
return glm_vec4_dot(r, tmp);
|
return glm_vec4_dot(r, tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Create mat4 matrix from pointer
|
||||||
|
*
|
||||||
|
* @param[in] src pointer to an array of floats
|
||||||
|
* @param[out] dest matrix
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
void
|
||||||
|
glm_mat4_make(float * __restrict src, mat4 dest) {
|
||||||
|
dest[0][0] = src[0]; dest[1][0] = src[4];
|
||||||
|
dest[0][1] = src[1]; dest[1][1] = src[5];
|
||||||
|
dest[0][2] = src[2]; dest[1][2] = src[6];
|
||||||
|
dest[0][3] = src[3]; dest[1][3] = src[7];
|
||||||
|
|
||||||
|
dest[2][0] = src[8]; dest[3][0] = src[12];
|
||||||
|
dest[2][1] = src[9]; dest[3][1] = src[13];
|
||||||
|
dest[2][2] = src[10]; dest[3][2] = src[14];
|
||||||
|
dest[2][3] = src[11]; dest[3][3] = src[15];
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* cglm_mat_h */
|
#endif /* cglm_mat_h */
|
||||||
|
|||||||
@@ -54,7 +54,8 @@
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define GLMM_NEGZEROf 0x80000000 /* 0x80000000 ---> -0.0f */
|
/* Note that `0x80000000` corresponds to `INT_MIN` for a 32-bit int. */
|
||||||
|
#define GLMM_NEGZEROf ((int)0x80000000) /* 0x80000000 ---> -0.0f */
|
||||||
|
|
||||||
#define GLMM__SIGNMASKf(X, Y, Z, W) \
|
#define GLMM__SIGNMASKf(X, Y, Z, W) \
|
||||||
_mm_castsi128_ps(_mm_set_epi32(X, Y, Z, W))
|
_mm_castsi128_ps(_mm_set_epi32(X, Y, Z, W))
|
||||||
@@ -64,7 +65,7 @@
|
|||||||
#define glmm_float32x4_SIGNMASK_NPNP GLMM__SIGNMASKf(GLMM_NEGZEROf, 0, GLMM_NEGZEROf, 0)
|
#define glmm_float32x4_SIGNMASK_NPNP GLMM__SIGNMASKf(GLMM_NEGZEROf, 0, GLMM_NEGZEROf, 0)
|
||||||
#define glmm_float32x4_SIGNMASK_NPPN GLMM__SIGNMASKf(GLMM_NEGZEROf, 0, 0, GLMM_NEGZEROf)
|
#define glmm_float32x4_SIGNMASK_NPPN GLMM__SIGNMASKf(GLMM_NEGZEROf, 0, 0, GLMM_NEGZEROf)
|
||||||
|
|
||||||
#define glmm_float32x4_SIGNMASK_NEG _mm_castsi128_ps(_mm_set1_epi32(0x80000000)) /* _mm_set1_ps(-0.0f) */
|
#define glmm_float32x4_SIGNMASK_NEG _mm_castsi128_ps(_mm_set1_epi32(GLMM_NEGZEROf)) /* _mm_set1_ps(-0.0f) */
|
||||||
#define glmm_float32x8_SIGNMASK_NEG _mm256_castsi256_ps(_mm256_set1_epi32(GLMM_NEGZEROf))
|
#define glmm_float32x8_SIGNMASK_NEG _mm256_castsi256_ps(_mm256_set1_epi32(GLMM_NEGZEROf))
|
||||||
|
|
||||||
static inline
|
static inline
|
||||||
|
|||||||
@@ -27,6 +27,7 @@
|
|||||||
CGLM_INLINE void glms_mat2_swap_col(mat2 mat, int col1, int col2)
|
CGLM_INLINE void glms_mat2_swap_col(mat2 mat, int col1, int col2)
|
||||||
CGLM_INLINE void glms_mat2_swap_row(mat2 mat, int row1, int row2)
|
CGLM_INLINE void glms_mat2_swap_row(mat2 mat, int row1, int row2)
|
||||||
CGLM_INLINE float glms_mat2_rmc(vec2 r, mat2 m, vec2 c)
|
CGLM_INLINE float glms_mat2_rmc(vec2 r, mat2 m, vec2 c)
|
||||||
|
CGLM_INLINE float glms_mat42_make(float * __restrict src);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef cglms_mat2_h
|
#ifndef cglms_mat2_h
|
||||||
@@ -258,4 +259,18 @@ glms_mat2_(rmc)(vec2s r, mat2s m, vec2s c) {
|
|||||||
return glm_mat2_rmc(r.raw, m.raw, c.raw);
|
return glm_mat2_rmc(r.raw, m.raw, c.raw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Create mat2 matrix from pointer
|
||||||
|
*
|
||||||
|
* @param[in] src pointer to an array of floats
|
||||||
|
* @return constructed matrix from raw pointer
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
mat2s
|
||||||
|
glms_mat2_(make)(float * __restrict src) {
|
||||||
|
mat2s r;
|
||||||
|
glm_mat2_make(src, r.raw);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* cglms_mat2_h */
|
#endif /* cglms_mat2_h */
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
CGLM_INLINE mat3s glms_mat3_swap_col(mat3s mat, int col1, int col2);
|
CGLM_INLINE mat3s glms_mat3_swap_col(mat3s mat, int col1, int col2);
|
||||||
CGLM_INLINE mat3s glms_mat3_swap_row(mat3s mat, int row1, int row2);
|
CGLM_INLINE mat3s glms_mat3_swap_row(mat3s mat, int row1, int row2);
|
||||||
CGLM_INLINE float glms_mat3_rmc(vec3s r, mat3s m, vec3s c);
|
CGLM_INLINE float glms_mat3_rmc(vec3s r, mat3s m, vec3s c);
|
||||||
|
CGLM_INLINE float glms_mat3_make(float * __restrict src);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef cglms_mat3s_h
|
#ifndef cglms_mat3s_h
|
||||||
@@ -285,4 +286,18 @@ glms_mat3_(rmc)(vec3s r, mat3s m, vec3s c) {
|
|||||||
return glm_mat3_rmc(r.raw, m.raw, c.raw);
|
return glm_mat3_rmc(r.raw, m.raw, c.raw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Create mat3 matrix from pointer
|
||||||
|
*
|
||||||
|
* @param[in] src pointer to an array of floats
|
||||||
|
* @return constructed matrix from raw pointer
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
mat3s
|
||||||
|
glms_mat3_(make)(float * __restrict src) {
|
||||||
|
mat3s r;
|
||||||
|
glm_mat3_make(src, r.raw);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* cglms_mat3s_h */
|
#endif /* cglms_mat3s_h */
|
||||||
|
|||||||
@@ -42,6 +42,7 @@
|
|||||||
CGLM_INLINE mat4s glms_mat4_swap_col(mat4s mat, int col1, int col2);
|
CGLM_INLINE mat4s glms_mat4_swap_col(mat4s mat, int col1, int col2);
|
||||||
CGLM_INLINE mat4s glms_mat4_swap_row(mat4s mat, int row1, int row2);
|
CGLM_INLINE mat4s glms_mat4_swap_row(mat4s mat, int row1, int row2);
|
||||||
CGLM_INLINE float glms_mat4_rmc(vec4s r, mat4s m, vec4s c);
|
CGLM_INLINE float glms_mat4_rmc(vec4s r, mat4s m, vec4s c);
|
||||||
|
CGLM_INLINE float glms_mat4_make(float * __restrict src);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef cglms_mat4s_h
|
#ifndef cglms_mat4s_h
|
||||||
@@ -459,4 +460,18 @@ glms_mat4_(rmc)(vec4s r, mat4s m, vec4s c) {
|
|||||||
return glm_mat4_rmc(r.raw, m.raw, c.raw);
|
return glm_mat4_rmc(r.raw, m.raw, c.raw);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* @brief Create mat4 matrix from pointer
|
||||||
|
*
|
||||||
|
* @param[in] src pointer to an array of floats
|
||||||
|
* @return constructed matrix from raw pointer
|
||||||
|
*/
|
||||||
|
CGLM_INLINE
|
||||||
|
mat4s
|
||||||
|
glms_mat4_(make)(float * __restrict src) {
|
||||||
|
mat4s r;
|
||||||
|
glm_mat4_make(src, r.raw);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* cglms_mat4s_h */
|
#endif /* cglms_mat4s_h */
|
||||||
|
|||||||
@@ -25,10 +25,17 @@
|
|||||||
* only #define governing the use of anonymous structs, so for backward
|
* only #define governing the use of anonymous structs, so for backward
|
||||||
* compatibility, we still honor that choice and disable them. */
|
* compatibility, we still honor that choice and disable them. */
|
||||||
# define CGLM_USE_ANONYMOUS_STRUCT 0
|
# define CGLM_USE_ANONYMOUS_STRUCT 0
|
||||||
# elif __STDC_VERSION__ >= 20112L || defined(_MSVC_VER)
|
# elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || \
|
||||||
|
(defined(__cplusplus) && __cplusplus >= 201103L)
|
||||||
/* We're compiling for C11 or this is the MSVC compiler. In either
|
/* We're compiling for C11 or this is the MSVC compiler. In either
|
||||||
* case, anonymous structs are available, so use them. */
|
* case, anonymous structs are available, so use them. */
|
||||||
# define CGLM_USE_ANONYMOUS_STRUCT 1
|
# define CGLM_USE_ANONYMOUS_STRUCT 1
|
||||||
|
# elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
|
||||||
|
/* GCC 4.6 and onwards support anonymous structs as an extension */
|
||||||
|
# define CGLM_USE_ANONYMOUS_STRUCT 1
|
||||||
|
# elif defined(__clang__) && __clang_major__ >= 3
|
||||||
|
/* Clang 3.0 and onwards support anonymous structs as an extension */
|
||||||
|
# define CGLM_USE_ANONYMOUS_STRUCT 1
|
||||||
# elif defined(_MSC_VER) && (_MSC_VER >= 1900) /* Visual Studio 2015 */
|
# elif defined(_MSC_VER) && (_MSC_VER >= 1900) /* Visual Studio 2015 */
|
||||||
/* We can support anonymous structs
|
/* We can support anonymous structs
|
||||||
* since Visual Studio 2015 or 2017 (1910) maybe? */
|
* since Visual Studio 2015 or 2017 (1910) maybe? */
|
||||||
|
|||||||
@@ -10,6 +10,6 @@
|
|||||||
|
|
||||||
#define CGLM_VERSION_MAJOR 0
|
#define CGLM_VERSION_MAJOR 0
|
||||||
#define CGLM_VERSION_MINOR 9
|
#define CGLM_VERSION_MINOR 9
|
||||||
#define CGLM_VERSION_PATCH 0
|
#define CGLM_VERSION_PATCH 1
|
||||||
|
|
||||||
#endif /* cglm_version_h */
|
#endif /* cglm_version_h */
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
project('cglm', 'c',
|
project('cglm', 'c',
|
||||||
version : '0.9.0',
|
version : '0.9.1',
|
||||||
license : 'mit',
|
license : 'mit',
|
||||||
default_options : [
|
default_options : [
|
||||||
'c_std=c11',
|
'c_std=c11',
|
||||||
|
|||||||
@@ -97,3 +97,9 @@ float
|
|||||||
glmc_mat2_rmc(vec2 r, mat2 m, vec2 c) {
|
glmc_mat2_rmc(vec2 r, mat2 m, vec2 c) {
|
||||||
return glm_mat2_rmc(r, m, c);
|
return glm_mat2_rmc(r, m, c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CGLM_EXPORT
|
||||||
|
void
|
||||||
|
glmc_mat2_make(float * __restrict src, mat2 dest) {
|
||||||
|
glm_mat2_make(src, dest);
|
||||||
|
}
|
||||||
|
|||||||
@@ -103,3 +103,9 @@ float
|
|||||||
glmc_mat3_rmc(vec3 r, mat3 m, vec3 c) {
|
glmc_mat3_rmc(vec3 r, mat3 m, vec3 c) {
|
||||||
return glm_mat3_rmc(r, m, c);
|
return glm_mat3_rmc(r, m, c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CGLM_EXPORT
|
||||||
|
void
|
||||||
|
glmc_mat3_make(float * __restrict src, mat3 dest) {
|
||||||
|
glm_mat3_make(src, dest);
|
||||||
|
}
|
||||||
|
|||||||
@@ -163,3 +163,9 @@ float
|
|||||||
glmc_mat4_rmc(vec4 r, mat4 m, vec4 c) {
|
glmc_mat4_rmc(vec4 r, mat4 m, vec4 c) {
|
||||||
return glm_mat4_rmc(r, m, c);
|
return glm_mat4_rmc(r, m, c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CGLM_EXPORT
|
||||||
|
void
|
||||||
|
glmc_mat4_make(float * __restrict src, mat4 dest) {
|
||||||
|
glm_mat4_make(src, dest);
|
||||||
|
}
|
||||||
|
|||||||
@@ -25,7 +25,9 @@ main(int argc, const char * argv[]) {
|
|||||||
total = 0.0;
|
total = 0.0;
|
||||||
count = sizeof(tests) / sizeof(tests[0]);
|
count = sizeof(tests) / sizeof(tests[0]);
|
||||||
|
|
||||||
fprintf(stderr, CYAN "\nWelcome to cglm tests\n\n" RESET);
|
fprintf(stderr, CYAN "\nWelcome to cglm tests ( " RESET);
|
||||||
|
glm_arch_print(stderr);
|
||||||
|
fprintf(stderr, CYAN " )\n\n" RESET);
|
||||||
|
|
||||||
srand((unsigned int)time(NULL));
|
srand((unsigned int)time(NULL));
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
#include "test_common.h"
|
#include "test_common.h"
|
||||||
|
|
||||||
#define A_MATRIX2x2 {{1,2},{5,6}}
|
#define A_MATRIX2x2 {{1,2},{5,6}}
|
||||||
|
#define MAT2_ARRAY {1, 5, 2, 7}
|
||||||
|
|
||||||
#ifndef CGLM_TEST_MAT2_ONCE
|
#ifndef CGLM_TEST_MAT2_ONCE
|
||||||
#define CGLM_TEST_MAT2_ONCE
|
#define CGLM_TEST_MAT2_ONCE
|
||||||
@@ -80,7 +81,7 @@ TEST_IMPL(GLM_PREFIX, mat2_identity) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST_IMPL(GLM_PREFIX, mat2_identity_array) {
|
TEST_IMPL(GLM_PREFIX, mat2_identity_array) {
|
||||||
int i, count;
|
size_t i, count;
|
||||||
mat2 matrices[4] = {
|
mat2 matrices[4] = {
|
||||||
A_MATRIX2x2,
|
A_MATRIX2x2,
|
||||||
A_MATRIX2x2,
|
A_MATRIX2x2,
|
||||||
@@ -283,4 +284,19 @@ TEST_IMPL(GLM_PREFIX, mat2_rmc) {
|
|||||||
TEST_SUCCESS
|
TEST_SUCCESS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_IMPL(GLM_PREFIX, mat2_make) {
|
||||||
|
mat2 dest;
|
||||||
|
unsigned int i, j;
|
||||||
|
float src[4] = MAT2_ARRAY;
|
||||||
|
|
||||||
|
GLM(mat2_make)(src, dest);
|
||||||
|
|
||||||
|
for (i = 0, j = 0; i < sizeof(src) / sizeof(float); i+=2, j++) {
|
||||||
|
ASSERT(test_eq(dest[j][0], src[i]))
|
||||||
|
ASSERT(test_eq(dest[j][1], src[i+1]))
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
#undef A_MATRIX2x2
|
#undef A_MATRIX2x2
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
#include "test_common.h"
|
#include "test_common.h"
|
||||||
|
|
||||||
#define A_MATRIX {{1,2,3},{5,6,7},{9,10,11}}
|
#define A_MATRIX {{1,2,3},{5,6,7},{9,10,11}}
|
||||||
|
#define MAT3_ARRAY {1, 5, 2, 7, 12, 1, 4, 6, 0}
|
||||||
|
|
||||||
TEST_IMPL(GLM_PREFIX, mat3_copy) {
|
TEST_IMPL(GLM_PREFIX, mat3_copy) {
|
||||||
mat3 m1 = A_MATRIX;
|
mat3 m1 = A_MATRIX;
|
||||||
@@ -35,7 +36,7 @@ TEST_IMPL(GLM_PREFIX, mat3_identity) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST_IMPL(GLM_PREFIX, mat3_identity_array) {
|
TEST_IMPL(GLM_PREFIX, mat3_identity_array) {
|
||||||
int i, count;
|
size_t i, count;
|
||||||
mat3 matrices[4] = {
|
mat3 matrices[4] = {
|
||||||
A_MATRIX,
|
A_MATRIX,
|
||||||
A_MATRIX,
|
A_MATRIX,
|
||||||
@@ -308,4 +309,21 @@ TEST_IMPL(GLM_PREFIX, mat3_rmc) {
|
|||||||
TEST_SUCCESS
|
TEST_SUCCESS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
TEST_IMPL(GLM_PREFIX, mat3_make) {
|
||||||
|
mat3 dest;
|
||||||
|
unsigned int i, j;
|
||||||
|
float src[9] = MAT3_ARRAY;
|
||||||
|
|
||||||
|
GLM(mat3_make)(src, dest);
|
||||||
|
|
||||||
|
for (i = 0, j = 0; i < sizeof(src) / sizeof(float); i+=3, j++) {
|
||||||
|
ASSERT(test_eq(dest[j][0], src[i]))
|
||||||
|
ASSERT(test_eq(dest[j][1], src[i+1]))
|
||||||
|
ASSERT(test_eq(dest[j][2], src[i+2]))
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
#undef A_MATRIX
|
#undef A_MATRIX
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
#define A_MATRIX {{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}}
|
#define A_MATRIX {{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}}
|
||||||
#define A_MATRIX3 {{1,2,3},{5,6,7},{9,10,11}}
|
#define A_MATRIX3 {{1,2,3},{5,6,7},{9,10,11}}
|
||||||
|
#define MAT4_ARRAY {1, 5, 2, 7, 12, 1, 4, 6, 0, 8, 1, 0, 6, 5, 0, 1}
|
||||||
|
|
||||||
TEST_IMPL(GLM_PREFIX, mat4_ucopy) {
|
TEST_IMPL(GLM_PREFIX, mat4_ucopy) {
|
||||||
mat4 m1 = A_MATRIX;
|
mat4 m1 = A_MATRIX;
|
||||||
@@ -47,7 +48,7 @@ TEST_IMPL(GLM_PREFIX, mat4_identity) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST_IMPL(GLM_PREFIX, mat4_identity_array) {
|
TEST_IMPL(GLM_PREFIX, mat4_identity_array) {
|
||||||
int i, count;
|
size_t i, count;
|
||||||
mat4 matrices[4] = {
|
mat4 matrices[4] = {
|
||||||
A_MATRIX,
|
A_MATRIX,
|
||||||
A_MATRIX,
|
A_MATRIX,
|
||||||
@@ -484,5 +485,22 @@ TEST_IMPL(GLM_PREFIX, mat4_rmc) {
|
|||||||
TEST_SUCCESS
|
TEST_SUCCESS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_IMPL(GLM_PREFIX, mat4_make) {
|
||||||
|
mat4 dest;
|
||||||
|
unsigned int i, j;
|
||||||
|
float src[16] = MAT4_ARRAY;
|
||||||
|
|
||||||
|
GLM(mat4_make)(src, dest);
|
||||||
|
|
||||||
|
for (i = 0, j = 0; i < sizeof(src) / sizeof(float); i+=4, j++) {
|
||||||
|
ASSERT(test_eq(dest[j][0], src[i]))
|
||||||
|
ASSERT(test_eq(dest[j][1], src[i+1]))
|
||||||
|
ASSERT(test_eq(dest[j][2], src[i+2]))
|
||||||
|
ASSERT(test_eq(dest[j][3], src[i+3]))
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST_SUCCESS
|
||||||
|
}
|
||||||
|
|
||||||
#undef A_MATRIX
|
#undef A_MATRIX
|
||||||
#undef A_MATRIX3
|
#undef A_MATRIX3
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ TEST_IMPL(GLM_PREFIX, quat_identity) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
TEST_IMPL(GLM_PREFIX, quat_identity_array) {
|
TEST_IMPL(GLM_PREFIX, quat_identity_array) {
|
||||||
int i, count;
|
size_t i, count;
|
||||||
versor quats[4] = {
|
versor quats[4] = {
|
||||||
{1.0f, 2.0f, 3.0f, 4.0f},
|
{1.0f, 2.0f, 3.0f, 4.0f},
|
||||||
{1.0f, 2.0f, 3.0f, 4.0f},
|
{1.0f, 2.0f, 3.0f, 4.0f},
|
||||||
|
|||||||
12
test/tests.h
12
test/tests.h
@@ -124,6 +124,7 @@ TEST_DECLARE(glm_mat4_inv_precise)
|
|||||||
TEST_DECLARE(glm_mat4_swap_col)
|
TEST_DECLARE(glm_mat4_swap_col)
|
||||||
TEST_DECLARE(glm_mat4_swap_row)
|
TEST_DECLARE(glm_mat4_swap_row)
|
||||||
TEST_DECLARE(glm_mat4_rmc)
|
TEST_DECLARE(glm_mat4_rmc)
|
||||||
|
TEST_DECLARE(glm_mat4_make)
|
||||||
|
|
||||||
TEST_DECLARE(glmc_mat4_ucopy)
|
TEST_DECLARE(glmc_mat4_ucopy)
|
||||||
TEST_DECLARE(glmc_mat4_copy)
|
TEST_DECLARE(glmc_mat4_copy)
|
||||||
@@ -150,6 +151,7 @@ TEST_DECLARE(glmc_mat4_inv_fast)
|
|||||||
TEST_DECLARE(glmc_mat4_swap_col)
|
TEST_DECLARE(glmc_mat4_swap_col)
|
||||||
TEST_DECLARE(glmc_mat4_swap_row)
|
TEST_DECLARE(glmc_mat4_swap_row)
|
||||||
TEST_DECLARE(glmc_mat4_rmc)
|
TEST_DECLARE(glmc_mat4_rmc)
|
||||||
|
TEST_DECLARE(glmc_mat4_make)
|
||||||
|
|
||||||
/* mat3 */
|
/* mat3 */
|
||||||
TEST_DECLARE(glm_mat3_copy)
|
TEST_DECLARE(glm_mat3_copy)
|
||||||
@@ -168,6 +170,7 @@ TEST_DECLARE(glm_mat3_inv)
|
|||||||
TEST_DECLARE(glm_mat3_swap_col)
|
TEST_DECLARE(glm_mat3_swap_col)
|
||||||
TEST_DECLARE(glm_mat3_swap_row)
|
TEST_DECLARE(glm_mat3_swap_row)
|
||||||
TEST_DECLARE(glm_mat3_rmc)
|
TEST_DECLARE(glm_mat3_rmc)
|
||||||
|
TEST_DECLARE(glm_mat3_make)
|
||||||
|
|
||||||
TEST_DECLARE(glmc_mat3_copy)
|
TEST_DECLARE(glmc_mat3_copy)
|
||||||
TEST_DECLARE(glmc_mat3_identity)
|
TEST_DECLARE(glmc_mat3_identity)
|
||||||
@@ -185,6 +188,7 @@ TEST_DECLARE(glmc_mat3_inv)
|
|||||||
TEST_DECLARE(glmc_mat3_swap_col)
|
TEST_DECLARE(glmc_mat3_swap_col)
|
||||||
TEST_DECLARE(glmc_mat3_swap_row)
|
TEST_DECLARE(glmc_mat3_swap_row)
|
||||||
TEST_DECLARE(glmc_mat3_rmc)
|
TEST_DECLARE(glmc_mat3_rmc)
|
||||||
|
TEST_DECLARE(glmc_mat3_make)
|
||||||
|
|
||||||
TEST_DECLARE(MACRO_GLM_MAT2_IDENTITY_INIT)
|
TEST_DECLARE(MACRO_GLM_MAT2_IDENTITY_INIT)
|
||||||
TEST_DECLARE(MACRO_GLM_MAT2_ZERO_INIT)
|
TEST_DECLARE(MACRO_GLM_MAT2_ZERO_INIT)
|
||||||
@@ -205,6 +209,7 @@ TEST_DECLARE(glm_mat2_inv)
|
|||||||
TEST_DECLARE(glm_mat2_swap_col)
|
TEST_DECLARE(glm_mat2_swap_col)
|
||||||
TEST_DECLARE(glm_mat2_swap_row)
|
TEST_DECLARE(glm_mat2_swap_row)
|
||||||
TEST_DECLARE(glm_mat2_rmc)
|
TEST_DECLARE(glm_mat2_rmc)
|
||||||
|
TEST_DECLARE(glm_mat2_make)
|
||||||
|
|
||||||
TEST_DECLARE(glmc_mat2_copy)
|
TEST_DECLARE(glmc_mat2_copy)
|
||||||
TEST_DECLARE(glmc_mat2_identity)
|
TEST_DECLARE(glmc_mat2_identity)
|
||||||
@@ -221,6 +226,7 @@ TEST_DECLARE(glmc_mat2_inv)
|
|||||||
TEST_DECLARE(glmc_mat2_swap_col)
|
TEST_DECLARE(glmc_mat2_swap_col)
|
||||||
TEST_DECLARE(glmc_mat2_swap_row)
|
TEST_DECLARE(glmc_mat2_swap_row)
|
||||||
TEST_DECLARE(glmc_mat2_rmc)
|
TEST_DECLARE(glmc_mat2_rmc)
|
||||||
|
TEST_DECLARE(glmc_mat2_make)
|
||||||
|
|
||||||
/* camera (incl [LR]H cross [NZ]O) */
|
/* camera (incl [LR]H cross [NZ]O) */
|
||||||
TEST_DECLARE(glm_perspective_lh_zo)
|
TEST_DECLARE(glm_perspective_lh_zo)
|
||||||
@@ -965,6 +971,7 @@ TEST_LIST {
|
|||||||
TEST_ENTRY(glm_mat4_swap_col)
|
TEST_ENTRY(glm_mat4_swap_col)
|
||||||
TEST_ENTRY(glm_mat4_swap_row)
|
TEST_ENTRY(glm_mat4_swap_row)
|
||||||
TEST_ENTRY(glm_mat4_rmc)
|
TEST_ENTRY(glm_mat4_rmc)
|
||||||
|
TEST_ENTRY(glm_mat4_make)
|
||||||
|
|
||||||
TEST_ENTRY(glmc_mat4_ucopy)
|
TEST_ENTRY(glmc_mat4_ucopy)
|
||||||
TEST_ENTRY(glmc_mat4_copy)
|
TEST_ENTRY(glmc_mat4_copy)
|
||||||
@@ -991,6 +998,7 @@ TEST_LIST {
|
|||||||
TEST_ENTRY(glmc_mat4_swap_col)
|
TEST_ENTRY(glmc_mat4_swap_col)
|
||||||
TEST_ENTRY(glmc_mat4_swap_row)
|
TEST_ENTRY(glmc_mat4_swap_row)
|
||||||
TEST_ENTRY(glmc_mat4_rmc)
|
TEST_ENTRY(glmc_mat4_rmc)
|
||||||
|
TEST_ENTRY(glmc_mat4_make)
|
||||||
|
|
||||||
/* mat3 */
|
/* mat3 */
|
||||||
TEST_ENTRY(glm_mat3_copy)
|
TEST_ENTRY(glm_mat3_copy)
|
||||||
@@ -1009,6 +1017,7 @@ TEST_LIST {
|
|||||||
TEST_ENTRY(glm_mat3_swap_col)
|
TEST_ENTRY(glm_mat3_swap_col)
|
||||||
TEST_ENTRY(glm_mat3_swap_row)
|
TEST_ENTRY(glm_mat3_swap_row)
|
||||||
TEST_ENTRY(glm_mat3_rmc)
|
TEST_ENTRY(glm_mat3_rmc)
|
||||||
|
TEST_ENTRY(glm_mat3_make)
|
||||||
|
|
||||||
TEST_ENTRY(glmc_mat3_copy)
|
TEST_ENTRY(glmc_mat3_copy)
|
||||||
TEST_ENTRY(glmc_mat3_identity)
|
TEST_ENTRY(glmc_mat3_identity)
|
||||||
@@ -1026,6 +1035,7 @@ TEST_LIST {
|
|||||||
TEST_ENTRY(glmc_mat3_swap_col)
|
TEST_ENTRY(glmc_mat3_swap_col)
|
||||||
TEST_ENTRY(glmc_mat3_swap_row)
|
TEST_ENTRY(glmc_mat3_swap_row)
|
||||||
TEST_ENTRY(glmc_mat3_rmc)
|
TEST_ENTRY(glmc_mat3_rmc)
|
||||||
|
TEST_ENTRY(glmc_mat3_make)
|
||||||
|
|
||||||
TEST_ENTRY(MACRO_GLM_MAT2_IDENTITY_INIT)
|
TEST_ENTRY(MACRO_GLM_MAT2_IDENTITY_INIT)
|
||||||
TEST_ENTRY(MACRO_GLM_MAT2_ZERO_INIT)
|
TEST_ENTRY(MACRO_GLM_MAT2_ZERO_INIT)
|
||||||
@@ -1046,6 +1056,7 @@ TEST_LIST {
|
|||||||
TEST_ENTRY(glm_mat2_swap_col)
|
TEST_ENTRY(glm_mat2_swap_col)
|
||||||
TEST_ENTRY(glm_mat2_swap_row)
|
TEST_ENTRY(glm_mat2_swap_row)
|
||||||
TEST_ENTRY(glm_mat2_rmc)
|
TEST_ENTRY(glm_mat2_rmc)
|
||||||
|
TEST_ENTRY(glm_mat2_make)
|
||||||
|
|
||||||
TEST_ENTRY(glmc_mat2_copy)
|
TEST_ENTRY(glmc_mat2_copy)
|
||||||
TEST_ENTRY(glmc_mat2_identity)
|
TEST_ENTRY(glmc_mat2_identity)
|
||||||
@@ -1062,6 +1073,7 @@ TEST_LIST {
|
|||||||
TEST_ENTRY(glmc_mat2_swap_col)
|
TEST_ENTRY(glmc_mat2_swap_col)
|
||||||
TEST_ENTRY(glmc_mat2_swap_row)
|
TEST_ENTRY(glmc_mat2_swap_row)
|
||||||
TEST_ENTRY(glmc_mat2_rmc)
|
TEST_ENTRY(glmc_mat2_rmc)
|
||||||
|
TEST_ENTRY(glmc_mat2_make)
|
||||||
|
|
||||||
/* camera (incl [LR]H cross [NZ]O) */
|
/* camera (incl [LR]H cross [NZ]O) */
|
||||||
TEST_ENTRY(glm_perspective_lh_zo)
|
TEST_ENTRY(glm_perspective_lh_zo)
|
||||||
|
|||||||
Reference in New Issue
Block a user