Blender V4.3
types_uint4.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
2 *
3 * SPDX-License-Identifier: Apache-2.0 */
4
5#pragma once
6
7#ifndef __UTIL_TYPES_H__
8# error "Do not include this file directly, include util/types.h instead."
9#endif
10
12
13#ifndef __KERNEL_NATIVE_VECTOR_TYPES__
14struct uint4 {
15 uint x, y, z, w;
16
17# ifndef __KERNEL_GPU__
20# endif
21};
22
24#endif /* __KERNEL_NATIVE_VECTOR_TYPES__ */
25
unsigned int uint
SIMD_FORCE_INLINE const btScalar & z() const
Return the z value.
Definition btQuadWord.h:117
SIMD_FORCE_INLINE const btScalar & w() const
Return the w value.
Definition btQuadWord.h:119
#define ccl_device_inline
#define CCL_NAMESPACE_END
#define __forceinline
uint x
Definition types_uint4.h:15
uint y
Definition types_uint4.h:15
uint z
Definition types_uint4.h:15
__forceinline uint operator[](uint i) const
uint w
Definition types_uint4.h:15
ccl_device_inline uint4 make_uint4(uint x, uint y, uint z, uint w)