Home
last modified time | relevance | path

Searched refs:szStep (Results 1 – 9 of 9) sorted by relevance

/dports/graphics/jogamp-jogl/jogl/src/test/com/jogamp/opengl/test/junit/jogl/acore/
H A DTestGLAutoDrawableFactoryGLnBitmapCapsNEWT.java65 volatile int szStep = 2; field in TestGLAutoDrawableFactoryGLnBitmapCapsNEWT
77 … = factory.createOffscreenAutoDrawable(null, reqGLCaps, null, widthStep*szStep, heightStep*szStep); in doTest()
122 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
123 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
128 szStep = 1; in doTest()
129 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
130 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
131 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
136 szStep = 4; in doTest()
137 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
[all …]
H A DTestGLAutoDrawableFactoryES2OffscrnCapsNEWT.java65 volatile int szStep = 2; field in TestGLAutoDrawableFactoryES2OffscrnCapsNEWT
85 … = factory.createOffscreenAutoDrawable(null, reqGLCaps, null, widthStep*szStep, heightStep*szStep); in doTest()
130 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
131 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
136 szStep = 1; in doTest()
137 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
138 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
139 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
144 szStep = 4; in doTest()
145 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
[all …]
H A DTestGLAutoDrawableFactoryGL2OffscrnCapsNEWT.java65 volatile int szStep = 2; field in TestGLAutoDrawableFactoryGL2OffscrnCapsNEWT
85 … = factory.createOffscreenAutoDrawable(null, reqGLCaps, null, widthStep*szStep, heightStep*szStep); in doTest()
130 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
131 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
136 szStep = 1; in doTest()
137 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
138 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
139 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
144 szStep = 4; in doTest()
145 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
[all …]
H A DTestFBOAutoDrawableFactoryNEWT.java68 volatile int szStep = 2; field in TestFBOAutoDrawableFactoryNEWT
181 … factory.createOffscreenAutoDrawable(null, caps, null, widthStep*szStep, heightStep*szStep); in testGLFBODrawableImpl()
339 szStep = 1; in testGLFBODrawableImpl()
340 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); // SWAP_EVEN in testGLFBODrawableImpl()
342 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in testGLFBODrawableImpl()
387 szStep = 4; in testGLFBODrawableImpl()
388 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); // SWAP_ODD in testGLFBODrawableImpl()
390 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in testGLFBODrawableImpl()
446 szStep = 3; in testGLFBODrawableImpl()
447 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in testGLFBODrawableImpl()
[all …]
H A DTestGLAutoDrawableFactoryGLProfileDeviceNEWT.java63 volatile int szStep = 2; field in TestGLAutoDrawableFactoryGLProfileDeviceNEWT
83 … factory.createOffscreenAutoDrawable(device, reqGLCaps, null, widthStep*szStep, heightStep*szStep); in doTest()
106 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
107 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
111 szStep = 1; in doTest()
112 glad.setSurfaceSize(widthStep*szStep, heightStep*szStep); in doTest()
113 …Assert.assertTrue("Size not reached: Expected "+(widthStep*szStep)+"x"+(heightStep*szStep)+", Is "… in doTest()
114 AWTRobotUtil.waitForSize(glad, widthStep*szStep, heightStep*szStep)); in doTest()
H A DTestGLAutoDrawableGLCanvasOnOffscrnCapsAWT.java68 volatile int szStep = 2; field in TestGLAutoDrawableGLCanvasOnOffscrnCapsAWT
117 final Dimension glc_sz = new Dimension(widthStep*szStep, heightStep*szStep); in doTest()
199 …e = glad.getNativeSurface().convertToPixelUnits(new int[] { widthStep*szStep, heightStep*szStep }); in doTest()
206 szStep = 1; in doTest()
207 setGLCanvasSize(frame, glad, widthStep*szStep, heightStep*szStep); in doTest()
208 expSurfaceSize[0] = widthStep*szStep; in doTest()
209 expSurfaceSize[1] = heightStep*szStep; in doTest()
218 szStep = 4; in doTest()
219 setGLCanvasSize(frame, glad, widthStep*szStep, heightStep*szStep); in doTest()
220 expSurfaceSize[0] = widthStep*szStep; in doTest()
[all …]
H A DTestGLAutoDrawableNewtCanvasAWTOnOffscrnCapsAWT.java73 volatile int szStep = 2; field in TestGLAutoDrawableNewtCanvasAWTOnOffscrnCapsAWT
127 final Dimension size0 = new Dimension(widthStep*szStep, heightStep*szStep); in doTest()
211 …e = glad.getNativeSurface().convertToPixelUnits(new int[] { widthStep*szStep, heightStep*szStep }); in doTest()
218 szStep = 1; in doTest()
219 setComponentSize(frame, nca, widthStep*szStep, heightStep*szStep); in doTest()
220 expSurfaceSize[0] = widthStep*szStep; in doTest()
221 expSurfaceSize[1] = heightStep*szStep; in doTest()
230 szStep = 4; in doTest()
231 setComponentSize(frame, nca, widthStep*szStep, heightStep*szStep); in doTest()
232 expSurfaceSize[0] = widthStep*szStep; in doTest()
[all …]
H A DTestGLAutoDrawableDelegateOnOffscrnCapsNEWT.java77 volatile int szStep = 2; field in TestGLAutoDrawableDelegateOnOffscrnCapsNEWT
97 window.setSize(widthStep*szStep, heightStep*szStep); in doTest()
200 …e = glad.getNativeSurface().convertToPixelUnits(new int[] { widthStep*szStep, heightStep*szStep }); in doTest()
207 szStep = 1; in doTest()
208 window.setSize(widthStep*szStep, heightStep*szStep); in doTest()
209 expSurfaceSize[0] = widthStep*szStep; in doTest()
210 expSurfaceSize[1] = heightStep*szStep; in doTest()
218 szStep = 4; in doTest()
219 window.setSize(widthStep*szStep, heightStep*szStep); in doTest()
220 expSurfaceSize[0] = widthStep*szStep; in doTest()
[all …]
H A DTestGLAutoDrawableGLWindowOnOffscrnCapsNEWT.java67 volatile int szStep = 2; field in TestGLAutoDrawableGLWindowOnOffscrnCapsNEWT
91 glad.setSize(widthStep*szStep, heightStep*szStep); in doTest()
155 …e = glad.getNativeSurface().convertToPixelUnits(new int[] { widthStep*szStep, heightStep*szStep }); in doTest()
162 szStep = 1; in doTest()
163 glad.setSize(widthStep*szStep, heightStep*szStep); in doTest()
164 expSurfaceSize[0] = widthStep*szStep; in doTest()
165 expSurfaceSize[1] = heightStep*szStep; in doTest()
173 szStep = 4; in doTest()
174 glad.setSize(widthStep*szStep, heightStep*szStep); in doTest()
175 expSurfaceSize[0] = widthStep*szStep; in doTest()
[all …]