Files
test2/source/blender/blenlib/intern/endian_switch.cc
Brecht Van Lommel e2e1984e60 Refactor: Convert remainder of blenlib to C++
A few headers like BLI_math_constants.h and BLI_utildefines.h keep working
for C code, for remaining makesdna and userdef defaults code in C.

Pull Request: https://projects.blender.org/blender/blender/pulls/134406
2025-02-12 23:01:08 +01:00

91 lines
1.5 KiB
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup bli
*/
#include "BLI_endian_switch.h"
#include "BLI_sys_types.h"
void BLI_endian_switch_int16_array(short *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_int16(val++);
}
}
}
void BLI_endian_switch_uint16_array(ushort *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_uint16(val++);
}
}
}
void BLI_endian_switch_int32_array(int *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_int32(val++);
}
}
}
void BLI_endian_switch_uint32_array(uint *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_uint32(val++);
}
}
}
void BLI_endian_switch_float_array(float *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_float(val++);
}
}
}
void BLI_endian_switch_int64_array(int64_t *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_int64(val++);
}
}
}
void BLI_endian_switch_uint64_array(uint64_t *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_uint64(val++);
}
}
}
void BLI_endian_switch_double_array(double *val, const int size)
{
if (size > 0) {
int i = size;
while (i--) {
BLI_endian_switch_double(val++);
}
}
}