Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 |
/** * Copyright 1998-2011 Epic Games, Inc. All Rights Reserved. */ // @warning: When you update this, you must add an entry to GPixelFormats(see UnRenderUtils.cpp) // @warning: The *Tools DLLs will also need to be recompiled if the ordering is changed, but should not need code changes. // @warning: The script compiler does not pick up changes in .uci files, you will need to do a full remake after changing this file. enum EPixelFormat { PF_Unknown, PF_A32B32G32R32F, PF_A8R8G8B8, PF_G8, PF_G16, PF_DXT1, PF_DXT3, PF_DXT5, PF_UYVY, PF_FloatRGB, // A RGB FP format with platform-specific implementation, for use with render targets PF_FloatRGBA, // A RGBA FP format with platform-specific implementation, for use with render targets PF_DepthStencil, // A depth+stencil format with platform-specific implementation, for use with render targets PF_ShadowDepth, // A depth format with platform-specific implementation, for use with render targets PF_FilteredShadowDepth, // A depth format with platform-specific implementation, that can be filtered by hardware PF_R32F, PF_G16R16, PF_G16R16F, PF_G16R16F_FILTER, PF_G32R32F, PF_A2B10G10R10, PF_A16B16G16R16, PF_D24, PF_R16F, PF_R16F_FILTER, PF_BC5, PF_V8U8, PF_A1, PF_FloatR11G11B10, // A low precision floating point format. }; |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |