enum | Flags {
DDSD_CAPS = 0x1,
DDSD_HEIGHT = 0x2,
DDSD_WIDTH = 0x4,
DDSD_PITCH = 0x8,
DDSD_BACKBUFFERCOUNT = 0x20,
DDSD_ZBUFFERBITDEPTH = 0x40,
DDSD_ALPHABITDEPTH = 0x80,
DDSD_LPSURFACE = 0x800,
DDSD_PIXELFORMAT = 0x1000,
DDSD_CKDESTOVERLAY = 0x2000,
DDSD_CKDESTBLT = 0x4000,
DDSD_CKSRCOVERLAY = 0x8000,
DDSD_CKSRCBLT = 0x10000,
DDSD_MIPMAPCOUNT = 0x20000,
DDSD_REFRESHRATE = 0x40000,
DDSD_LINEARSIZE = 0x80000,
DDSD_TEXTURESTAGE = 0x100000,
DDSD_FVF = 0x200000,
DDSD_SRCVBHANDLE = 0x400000,
DDSD_DEPTH = 0x800000,
DDSD_ALL = 0xFFF9EE1
} |
enum | DDSCaps {
DDSCAPS_RESERVED1 = 0x1,
DDSCAPS_ALPHA = 0x2,
DDSCAPS_BACKBUFFER = 0x4,
DDSCAPS_COMPLEX = 0x8,
DDSCAPS_FLIP = 0x10,
DDSCAPS_FRONTBUFFER = 0x20,
DDSCAPS_OFFSCREENPLAIN = 0x40,
DDSCAPS_OVERLAY = 0x80,
DDSCAPS_PALETTE = 0x100,
DDSCAPS_PRIMARYSURFACE = 0x200,
DDSCAPS_PRIMARYSURFACELEFT = 0x400,
DDSCAPS_SYSTEMMEMORY = 0x800,
DDSCAPS_TEXTURE = 0x1000,
DDSCAPS_3DDEVICE = 0x2000,
DDSCAPS_VIDEOMEMORY = 0x4000,
DDSCAPS_VISIBLE = 0x8000,
DDSCAPS_WRITEONLY = 0x10000,
DDSCAPS_ZBUFFER = 0x20000,
DDSCAPS_OWNDC = 0x40000,
DDSCAPS_LIVEVIDEO = 0x80000,
DDSCAPS_HWCODEC = 0x100000,
DDSCAPS_MODEX = 0x200000,
DDSCAPS_MIPMAP = 0x400000,
DDSCAPS_RESERVED2 = 0x800000,
DDSCAPS_ALLOCONLOAD = 0x4000000,
DDSCAPS_VIDEOPORT = 0x8000000,
DDSCAPS_LOCALVIDMEM = 0x10000000,
DDSCAPS_NONLOCALVIDMEM = 0x20000000,
DDSCAPS_STANDARDVGAMODE = 0x40000000,
DDSCAPS_OPTIMIZED = 0x80000000,
DDSCAPS2_HARDWAREDEINTERLACE = 0x2,
DDSCAPS2_HINTDYNAMIC = 0x4,
DDSCAPS2_HINTSTATIC = 0x8,
DDSCAPS2_TEXTUREMANAGE = 0x10,
DDSCAPS2_RESERVED1 = 0x20,
DDSCAPS2_RESERVED2 = 0x40,
DDSCAPS2_OPAQUE = 0x80,
DDSCAPS2_HINTALIASING = 0x100,
DDSCAPS2_CUBEMAP = 0x200,
DDSCAPS2_CUBEMAP_POSITIVEX = 0x400,
DDSCAPS2_CUBEMAP_NEGATIVEX = 0x800,
DDSCAPS2_CUBEMAP_POSITIVEY = 0x1000,
DDSCAPS2_CUBEMAP_NEGATIVEY = 0x2000,
DDSCAPS2_CUBEMAP_POSITIVEZ = 0x4000,
DDSCAPS2_CUBEMAP_NEGATIVEZ = 0x8000,
DDSCAPS2_CUBEMAP_ALLFACES = 0xFC00,
DDSCAPS2_MIPMAPSUBLEVEL = 0x10000,
DDSCAPS2_D3DTEXTUREMANAGE = 0x20000,
DDSCAPS2_DONOTPERSIST = 0x40000,
DDSCAPS2_STEREOSURFACELEFT = 0x80000,
DDSCAPS2_VOLUME = 0x200000,
DDSCAPS2_NOTUSERLOCKABLE = 0x400000,
DDSCAPS2_POINTS = 0x800000,
DDSCAPS2_RTPATCHES = 0x1000000,
DDSCAPS2_NPATCHES = 0x2000000,
DDSCAPS2_RESERVED3 = 0x4000000,
DDSCAPS2_DISCARDBACKBUFFER = 0x10000000,
DDSCAPS2_ENABLEALPHACHANNEL = 0x20000000,
DDSCAPS2_EXTENDEDFORMATPRIMARY = 0x40000000,
DDSCAPS2_ADDITIONALPRIMARY = 0x80000000,
DDSCAPS3_MULTISAMPLE_MASK = 0x1F,
DDSCAPS3_MULTISAMPLE_QUALITY_MASK = 0xE0,
DDSCAPS3_MULTISAMPLE_QUALITY_SHIFT = 5,
DDSCAPS3_RESERVED1 = 0x100,
DDSCAPS3_RESERVED2 = 0x200,
DDSCAPS3_LIGHTWEIGHTMIPMAP = 0x400,
DDSCAPS3_AUTOGENMIPMAP = 0x800,
DDSCAPS3_DMAP = 0x1000,
DDSCAPS3_CREATESHAREDRESOURCE = 0x2000,
DDSCAPS3_READONLYRESOURCE = 0x4000,
DDSCAPS3_OPENSHAREDRESOURCE = 0x8000
} |