Changeset View
Changeset View
Standalone View
Standalone View
source/blender/gpu/GPU_texture.h
| Show First 20 Lines • Show All 89 Lines • ▼ Show 20 Lines | typedef enum eGPUTextureFormat { | ||||
| GPU_R16I, | GPU_R16I, | ||||
| GPU_R16F, | GPU_R16F, | ||||
| GPU_R16, /* Max texture buffer format. */ | GPU_R16, /* Max texture buffer format. */ | ||||
| /* Special formats texture & renderbuffer */ | /* Special formats texture & renderbuffer */ | ||||
| #if 0 | #if 0 | ||||
| GPU_RGB10_A2, | GPU_RGB10_A2, | ||||
| GPU_RGB10_A2UI, | GPU_RGB10_A2UI, | ||||
| GPU_SRGB8_A8, | |||||
| #endif | #endif | ||||
| GPU_R11F_G11F_B10F, | GPU_R11F_G11F_B10F, | ||||
| GPU_DEPTH32F_STENCIL8, | GPU_DEPTH32F_STENCIL8, | ||||
| GPU_DEPTH24_STENCIL8, | GPU_DEPTH24_STENCIL8, | ||||
| GPU_SRGB8_A8, | GPU_SRGB8_A8, | ||||
| /* Texture only format */ | /* Texture only format */ | ||||
| GPU_RGB16F, | GPU_RGB16F, | ||||
| ▲ Show 20 Lines • Show All 161 Lines • Show Last 20 Lines | |||||