public static bool IsLuminace(this DDPFFlags _this) { return((_this & DDPFFlags.DDPF_LUMINANCE) != 0); }
public static bool IsYUV(this DDPFFlags _this) { return((_this & DDPFFlags.DDPF_YUV) != 0); }
public static bool IsRGB(this DDPFFlags _this) { return((_this & DDPFFlags.DDPF_RGB) != 0); }
public static bool IsFourCC(this DDPFFlags _this) { return((_this & DDPFFlags.DDPF_FOURCC) != 0); }
public static bool IsAlpha(this DDPFFlags _this) { return((_this & DDPFFlags.DDPF_ALPHA) != 0); }
public static bool IsAlphaPixels(this DDPFFlags _this) { return((_this & DDPFFlags.DDPF_ALPHAPIXELS) != 0); }