Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-04-30 05:25:34 +0300
committerHans Goudey <h.goudey@me.com>2021-04-30 05:25:34 +0300
commit45a14a20de9cfd11695195ea7b2aaceb2734e747 (patch)
tree99db04aeead9305a56970f8ada9aa15bf56cef19 /source/blender/blenkernel/intern/pbvh_intern.h
parent8dd5fdca3bc3cefe965a288de56b88553a2245bc (diff)
Cleanup: Mismatched array bounds in function declaration
Diffstat (limited to 'source/blender/blenkernel/intern/pbvh_intern.h')
-rw-r--r--source/blender/blenkernel/intern/pbvh_intern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/pbvh_intern.h b/source/blender/blenkernel/intern/pbvh_intern.h
index db6b2a89efb..948b57578dc 100644
--- a/source/blender/blenkernel/intern/pbvh_intern.h
+++ b/source/blender/blenkernel/intern/pbvh_intern.h
@@ -194,9 +194,9 @@ bool ray_face_intersection_quad(const float ray_start[3],
float *depth);
bool ray_face_intersection_tri(const float ray_start[3],
struct IsectRayPrecalc *isect_precalc,
- const float *t0,
- const float *t1,
- const float *t2,
+ const float t0[3],
+ const float t1[3],
+ const float t2[3],
float *depth);
bool ray_face_nearest_quad(const float ray_start[3],