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