< prev index next >

src/demo/share/java2d/J2DBench/src/j2dbench/tests/GraphicsTests.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2002, 2014, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * --- 1,7 ---- /* ! * Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: *
*** 124,134 **** "Large Shapes (250x250)", "X-Large Shapes (1000x1000)", "Huge Shapes (4000x4000)", }, 0xa); if (hasGraphics2D) { ! String rulenames[] = { "Clear", "Src", "Dst", "SrcOver", "DstOver", --- 124,134 ---- "Large Shapes (250x250)", "X-Large Shapes (1000x1000)", "Huge Shapes (4000x4000)", }, 0xa); if (hasGraphics2D) { ! String[] rulenames = { "Clear", "Src", "Dst", "SrcOver", "DstOver",
*** 138,149 **** "DstOut", "SrcAtop", "DstAtop", "Xor", }; ! String ruledescs[] = new String[rulenames.length]; ! Object rules[] = new Object[rulenames.length]; int j = 0; int defrule = 0; for (int i = 0; i < rulenames.length; i++) { String rulename = rulenames[i]; try { --- 138,149 ---- "DstOut", "SrcAtop", "DstAtop", "Xor", }; ! String[] ruledescs = new String[rulenames.length]; ! Object[] rules = new Object[rulenames.length]; int j = 0; int defrule = 0; for (int i = 0; i < rulenames.length; i++) { String rulename = rulenames[i]; try {
*** 179,198 **** "AlphaComposite Rule", j, rulenames, rules, rulenames, ruledescs, (1 << defrule)); ((Option.ObjectList) compRules).setNumRows(4); ! Transform xforms[] = { Identity.instance, FTranslate.instance, Scale2x2.instance, Rotate15.instance, ShearX.instance, ShearY.instance, }; ! String xformnames[] = new String[xforms.length]; ! String xformdescs[] = new String[xforms.length]; for (int i = 0; i < xforms.length; i++) { xformnames[i] = xforms[i].getShortName(); xformdescs[i] = xforms[i].getDescription(); } transforms = --- 179,198 ---- "AlphaComposite Rule", j, rulenames, rules, rulenames, ruledescs, (1 << defrule)); ((Option.ObjectList) compRules).setNumRows(4); ! Transform[] xforms = { Identity.instance, FTranslate.instance, Scale2x2.instance, Rotate15.instance, ShearX.instance, ShearY.instance, }; ! String[] xformnames = new String[xforms.length]; ! String[] xformdescs = new String[xforms.length]; for (int i = 0; i < xforms.length; i++) { xformnames[i] = xforms[i].getShortName(); xformdescs[i] = xforms[i].getDescription(); } transforms =
*** 212,222 **** "Render in XOR mode", Option.Toggle.Off); doClipping = new Option.Toggle(groptroot, "clip", "Render through a complex clip shape", Option.Toggle.Off); ! String rhintnames[] = { "Default", "Speed", "Quality", }; renderHint = new Option.ObjectList(groptroot, "renderhint", "Rendering Hint", --- 212,222 ---- "Render in XOR mode", Option.Toggle.Off); doClipping = new Option.Toggle(groptroot, "clip", "Render through a complex clip shape", Option.Toggle.Off); ! String[] rhintnames = { "Default", "Speed", "Quality", }; renderHint = new Option.ObjectList(groptroot, "renderhint", "Rendering Hint",
< prev index next >