< prev index next >

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

Print this page

        

@@ -189,6 +189,21 @@
 #define StoreFourByteAbgrFrom4ByteArgbComps(pRas, PREFIX, x, COMP_PREFIX) \
     StoreFourByteAbgrFrom4ByteArgb(pRas, PREFIX, x, \
                                    COMP_PREFIX ## A, COMP_PREFIX ## R, \
                                    COMP_PREFIX ## G, COMP_PREFIX ## B)
 
+/*
+ * Declare ## TYPE ## SrcOverDstBlendFactor
+ * Declares blend factor variable to be used for blending destination color
+ * components with source color.
+ */
+#define  DeclareFourByteAbgrSrcOverDstBlendFactor(PREFIX) \
+    jint PREFIX;
+
+/*
+ * Store ## TYPE ## SrcOverDstBlendFactor
+ * Returns appropriate blend value for use in blending calculations.
+ */
+#define  StoreFourByteAbgrSrcOverDstBlendFactor(dF, dA) \
+    (dA)
+
 #endif /* FourByteAbgr_h_Included */
< prev index next >