Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_types.h
| Show First 20 Lines • Show All 47 Lines • ▼ Show 20 Lines | |||||
| typedef unsigned char uchar; | typedef unsigned char uchar; | ||||
| typedef unsigned int uint; | typedef unsigned int uint; | ||||
| typedef unsigned short ushort; | typedef unsigned short ushort; | ||||
| #endif | #endif | ||||
| /* Fixed Bits Types */ | /* Fixed Bits Types */ | ||||
| #ifdef __KERNEL_OPENCL__ | #ifdef __KERNEL_OPENCL__ | ||||
| typedef ulong uint64_t; | typedef unsigned long uint64_t; | ||||
| #endif | #endif | ||||
| #ifndef __KERNEL_GPU__ | #ifndef __KERNEL_GPU__ | ||||
| # ifdef _WIN32 | # ifdef _WIN32 | ||||
| typedef signed char int8_t; | typedef signed char int8_t; | ||||
| typedef unsigned char uint8_t; | typedef unsigned char uint8_t; | ||||
| typedef signed short int16_t; | typedef signed short int16_t; | ||||
| ▲ Show 20 Lines • Show All 101 Lines • Show Last 20 Lines | |||||