--- old/src/java.desktop/share/native/libawt/java2d/loops/IntArgbPre.h 2016-04-27 13:38:31.248856999 +0530 +++ new/src/java.desktop/share/native/libawt/java2d/loops/IntArgbPre.h 2016-04-27 13:38:31.040753000 +0530 @@ -216,4 +216,19 @@ 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 DeclareIntArgbPreSrcOverDstBlendFactor(PREFIX) \ + jint PREFIX; + +/* + * Store ## TYPE ## SrcOverDstBlendFactor + * Returns appropriate blend value for use in blending calculations. + */ +#define StoreIntArgbPreSrcOverDstBlendFactor(dF, dA) \ + (dF) + #endif /* IntArgbPre_h_Included */