summaryrefslogtreecommitdiff
path: root/modules/xatlas_unwrap
diff options
context:
space:
mode:
authorM. Huri <kak_huri@yahoo.com>2021-10-12 14:30:55 +0700
committerM. Huri <kak_huri@yahoo.com>2021-10-12 20:20:19 +0700
commit033dc4dbefed22aab7b58a60e27ce3c86943fe25 (patch)
tree50ce05c3bce0431937f6c070b7f0042682065ace /modules/xatlas_unwrap
parentf9aec342dcd51d65c5970dd395e3c7a66cac446c (diff)
Replaced NULL with nullptr
Diffstat (limited to 'modules/xatlas_unwrap')
-rw-r--r--modules/xatlas_unwrap/register_types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/xatlas_unwrap/register_types.cpp b/modules/xatlas_unwrap/register_types.cpp
index 8913ef1b65..58a6216b1e 100644
--- a/modules/xatlas_unwrap/register_types.cpp
+++ b/modules/xatlas_unwrap/register_types.cpp
@@ -114,7 +114,7 @@ bool xatlas_mesh_lightmap_unwrap_callback(float p_texel_size, const float *p_ver
input_mesh.vertexPositionStride = sizeof(float) * 3;
input_mesh.vertexNormalData = p_normals;
input_mesh.vertexNormalStride = sizeof(uint32_t) * 3;
- input_mesh.vertexUvData = NULL;
+ input_mesh.vertexUvData = nullptr;
input_mesh.vertexUvStride = 0;
xatlas::ChartOptions chart_options;