summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-10-12 22:30:43 +0200
committerGitHub <noreply@github.com>2021-10-12 22:30:43 +0200
commit88463c3eee630ba780556918294744ba7125c94b (patch)
tree3116fc88200f7e8174d841aed3455eb894cff744 /modules
parent64ec08d70d9cec506df11b04541822ae1bd66a60 (diff)
parent033dc4dbefed22aab7b58a60e27ce3c86943fe25 (diff)
Merge pull request #53712 from CakHuri/nullptr
Replace NULL with nullptr
Diffstat (limited to 'modules')
-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;