< prev index next >

src/java.desktop/share/native/libawt/java2d/loops/IntArgb.h

Print this page

        

@@ -206,6 +206,21 @@
         ExtractIntDcmComponents1234(pixel, COMP_PREFIX ## A, r, g, b); \
         COMP_PREFIX ## G = ComposeUshortGrayFrom3ByteRgb(r, g, b); \
         COMP_PREFIX ## A = (COMP_PREFIX ## A << 8) + COMP_PREFIX ## A; \
     } while (0)
 
+/*
+ * Declare ## TYPE ## SrcOverDstBlendFactor
+ * Declares blend factor variable to be used for blending destination color
+ * components with source color.
+ */
+#define  DeclareIntArgbSrcOverDstBlendFactor(PREFIX) \
+    jint PREFIX;
+
+/*
+ * Store ## TYPE ## SrcOverDstBlendFactor
+ * Returns appropriate blend value for use in blending calculations.
+ */
+#define  StoreIntArgbSrcOverDstBlendFactor(dF, dA) \
+    (dA)
+
 #endif /* IntArgb_h_Included */
< prev index next >