C++
enum ImageOption { kImageOptionNone = 0x0, kImageOptionRenderBitmapOpaque = (0x1 << 0), kImageOptionUserOverride = (0x1 << 1) };
File
AcTc.h
Members
Members | Description |
---|---|
kImageOptionNone | No option |
kImageOptionRenderBitmapOpaque | Render bitmap images opaque. Without this option bitmap images are rendered transparently by taking the pixel color at 0,0 as the transparent color. |
kImageOptionUserOverride | The image was overridden by the user. If this flag is set the tool will no longer auto-generate the image. |
Description
ImageOption