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:
authorChris Blackbourn <chrisbblend@gmail.com>2022-08-06 00:52:23 +0300
committerChris Blackbourn <chrisbblend@gmail.com>2022-08-06 00:52:23 +0300
commit0d62e963b06eccaee2e9f33a10954e7768b81189 (patch)
tree78abea6b6783d63b45f595932193bf8dbf8cb16f /source/blender/blenkernel/BKE_image.h
parent476de3b4637761ba3746e0559c725ee331f38473 (diff)
Cleanup: Simplify NULL handling for BKE_image_find_nearest_tile
Differential Revision: https://developer.blender.org/D15616
Diffstat (limited to 'source/blender/blenkernel/BKE_image.h')
-rw-r--r--source/blender/blenkernel/BKE_image.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_image.h b/source/blender/blenkernel/BKE_image.h
index 8c66e92f762..202479675b0 100644
--- a/source/blender/blenkernel/BKE_image.h
+++ b/source/blender/blenkernel/BKE_image.h
@@ -420,9 +420,9 @@ void BKE_image_get_tile_uv(const struct Image *ima, const int tile_number, float
*/
int BKE_image_find_nearest_tile_with_offset(const struct Image *image,
const float co[2],
- float r_uv_offset[2]) ATTR_NONNULL(1, 2, 3);
+ float r_uv_offset[2]) ATTR_NONNULL(2, 3);
int BKE_image_find_nearest_tile(const struct Image *image, const float co[2])
- ATTR_NONNULL(1, 2) ATTR_WARN_UNUSED_RESULT;
+ ATTR_NONNULL(2) ATTR_WARN_UNUSED_RESULT;
void BKE_image_get_size(struct Image *image, struct ImageUser *iuser, int *r_width, int *r_height);
void BKE_image_get_size_fl(struct Image *image, struct ImageUser *iuser, float r_size[2]);