Searched defs:scanlines (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderer.cpp90 jint scanlineCount, jint *scanlines)
97 if (scanlines == NULL || scanlineCount <= 0) {
102 return d3dc->pVCacher->DrawScanlines(scanlineCount, scanlines);
89 D3DRenderer_DrawScanlines(D3DContext *d3dc, jint scanlineCount, jint *scanlines) argument
H A DD3DVertexCacher.cpp374 D3DVertexCacher::DrawScanlines(jint scanlineCount, jint *scanlines) argument
389 x1 = ((float)*(scanlines++)) +HV_FF3;
390 x2 = ((float)*(scanlines++)) +HV_FF2;
391 y = ((float)*(scanlines++)) +HV_FF1;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderer.c276 jint scanlineCount, jint *scanlines)
281 RETURN_IF_NULL(scanlines);
287 GLfloat x1 = ((GLfloat)*(scanlines++)) + 0.2f;
288 GLfloat x2 = ((GLfloat)*(scanlines++)) + 1.2f;
289 GLfloat y = ((GLfloat)*(scanlines++)) + 0.5f;
275 OGLRenderer_DrawScanlines(OGLContext *oglc, jint scanlineCount, jint *scanlines) argument

Completed in 537 milliseconds