Exemple #1
0
 public static bool IsLuminace(this DDPFFlags _this)
 {
     return((_this & DDPFFlags.DDPF_LUMINANCE) != 0);
 }
Exemple #2
0
 public static bool IsYUV(this DDPFFlags _this)
 {
     return((_this & DDPFFlags.DDPF_YUV) != 0);
 }
Exemple #3
0
 public static bool IsRGB(this DDPFFlags _this)
 {
     return((_this & DDPFFlags.DDPF_RGB) != 0);
 }
Exemple #4
0
 public static bool IsFourCC(this DDPFFlags _this)
 {
     return((_this & DDPFFlags.DDPF_FOURCC) != 0);
 }
Exemple #5
0
 public static bool IsAlpha(this DDPFFlags _this)
 {
     return((_this & DDPFFlags.DDPF_ALPHA) != 0);
 }
Exemple #6
0
 public static bool IsAlphaPixels(this DDPFFlags _this)
 {
     return((_this & DDPFFlags.DDPF_ALPHAPIXELS) != 0);
 }