Searched refs:OGLContext (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLBufImgOps.h29 #include "OGLContext.h"
31 void OGLBufImgOps_EnableConvolveOp(OGLContext *oglc, jlong pSrcOps,
35 void OGLBufImgOps_DisableConvolveOp(OGLContext *oglc);
36 void OGLBufImgOps_EnableRescaleOp(OGLContext *oglc, jlong pSrcOps,
40 void OGLBufImgOps_DisableRescaleOp(OGLContext *oglc);
41 void OGLBufImgOps_EnableLookupOp(OGLContext *oglc, jlong pSrcOps,
45 void OGLBufImgOps_DisableLookupOp(OGLContext *oglc);
H A DOGLVertexCache.h30 #include "OGLContext.h"
68 jboolean OGLVertexCache_InitVertexCache(OGLContext *oglc);
70 void OGLVertexCache_RestoreColorState(OGLContext *oglc);
72 void OGLVertexCache_EnableMaskCache(OGLContext *oglc);
73 void OGLVertexCache_DisableMaskCache(OGLContext *oglc);
74 void OGLVertexCache_AddMaskQuad(OGLContext *oglc,
80 void OGLVertexCache_AddGlyphQuad(OGLContext *oglc,
H A DOGLRenderer.h30 #include "OGLContext.h"
39 void OGLRenderer_DrawLine(OGLContext *oglc,
41 void OGLRenderer_DrawRect(OGLContext *oglc,
43 void OGLRenderer_DrawPoly(OGLContext *oglc,
47 void OGLRenderer_DrawScanlines(OGLContext *oglc,
49 void OGLRenderer_DrawParallelogram(OGLContext *oglc,
54 void OGLRenderer_DrawAAParallelogram(OGLContext *oglc, OGLSDOps *dstOps,
60 void OGLRenderer_FillRect(OGLContext *oglc,
62 void OGLRenderer_FillSpans(OGLContext *oglc,
64 void OGLRenderer_FillParallelogram(OGLContext *ogl
[all...]
H A DOGLContext.h56 * The OGLContext structure contains cached state relevant to the native
58 * OGLContext object is associated with a native-level OGLContext structure.
60 * GraphicsConfig associated with this context (see OGLContext.java for
63 * used in the OGLContext.set*() methods.
66 * OGLContext is created. The acceptable values (e.g. GL_MODULATE,
88 } OGLContext; typedef in typeref:struct:__anon927
101 * See OGLContext.java for more on these flags.
140 * given OGLContext. Note that only the constant name needs to be passed as
148 * of OGLContext
[all...]
H A DOGLTextRenderer.h32 #include "OGLContext.h"
47 void OGLTR_EnableGlyphVertexCache(OGLContext *oglc);
48 void OGLTR_DisableGlyphVertexCache(OGLContext *oglc);
50 void OGLTR_DrawGlyphList(JNIEnv *env, OGLContext *oglc, OGLSDOps *dstOps,
H A DOGLMaskBlit.h29 #include "OGLContext.h"
31 void OGLMaskBlit_MaskBlit(JNIEnv *env, OGLContext *oglc,
H A DOGLMaskFill.h29 #include "OGLContext.h"
31 void OGLMaskFill_MaskFill(OGLContext *oglc,
H A DOGLPaints.h32 #include "OGLContext.h"
34 void OGLPaints_ResetPaint(OGLContext *oglc);
36 void OGLPaints_SetColor(OGLContext *oglc, jint pixel);
38 void OGLPaints_SetGradientPaint(OGLContext *oglc,
43 void OGLPaints_SetLinearGradientPaint(OGLContext *oglc, OGLSDOps *dstOps,
49 void OGLPaints_SetRadialGradientPaint(OGLContext *oglc, OGLSDOps *dstOps,
57 void OGLPaints_SetTexturePaint(OGLContext *oglc,
H A DOGLBlitLoops.h31 #include "OGLContext.h"
41 OGLContext *oglc, jlong pSrcOps, jlong pDstOps,
50 OGLContext *oglc, jlong pSrcOps, jlong pDstOps,
58 void OGLBlitLoops_SurfaceToSwBlit(JNIEnv *env, OGLContext *oglc,
65 OGLContext *oglc, OGLSDOps *dstOps,
H A DOGLVertexCache.c70 OGLVertexCache_InitVertexCache(OGLContext *oglc)
142 OGLVertexCache_RestoreColorState(OGLContext *oglc)
176 OGLVertexCache_EnableMaskCache(OGLContext *oglc)
197 OGLVertexCache_DisableMaskCache(OGLContext *oglc)
214 OGLVertexCache_AddMaskQuad(OGLContext *oglc,
275 OGLVertexCache_AddGlyphQuad(OGLContext *oglc,
H A DOGLContext.c35 #include "OGLContext.h"
46 extern OGLContext *OGLSD_MakeOGLContextCurrent(JNIEnv *env,
144 * Fetches the OGLContext associated with the given destination surface,
146 * viewport, and then returns a pointer to the OGLContext.
148 OGLContext *
153 OGLContext *oglc = NULL;
210 OGLContext_ResetClip(OGLContext *oglc)
225 OGLContext_SetRectClip(OGLContext *oglc, OGLSDOps *dstOps,
269 OGLContext_BeginShapeClip(OGLContext *oglc)
306 OGLContext_EndShapeClip(OGLContext *ogl
[all...]
H A DOGLRenderer.c66 OGLRenderer_DrawLine(OGLContext *oglc, jint x1, jint y1, jint x2, jint y2)
127 OGLRenderer_DrawRect(OGLContext *oglc, jint x, jint y, jint w, jint h)
169 OGLRenderer_DrawPoly(OGLContext *oglc,
252 OGLContext *oglc = OGLRenderQueue_GetCurrentContext();
275 OGLRenderer_DrawScanlines(OGLContext *oglc,
297 OGLRenderer_FillRect(OGLContext *oglc, jint x, jint y, jint w, jint h)
312 OGLRenderer_FillSpans(OGLContext *oglc, jint spanCount, jint *spans)
339 OGLRenderer_FillParallelogram(OGLContext *oglc,
361 OGLRenderer_DrawParallelogram(OGLContext *oglc,
588 OGLRenderer_FillAAParallelogram(OGLContext *ogl
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/opengl/
H A DGLXGraphicsConfig.h32 #include "OGLContext.h"
49 * OGLContext *context;
61 OGLContext *context;
67 * required by and is encapsulated by the platform-independent OGLContext
H A DGLXGraphicsConfig.c134 * Disposes all memory and resources allocated for the given OGLContext.
137 GLXGC_DestroyOGLContext(OGLContext *oglc)
174 * GLXGraphicsConfigInfo (including its native OGLContext data).
412 * Initializes a new OGLContext, which includes the native GLXContext handle
415 static OGLContext *
419 OGLContext *oglc;
424 oglc = (OGLContext *)malloc(sizeof(OGLContext));
431 memset(oglc, 0, sizeof(OGLContext));
469 OGLContext *ogl
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/
H A DWGLGraphicsConfig.h32 #include "OGLContext.h"
41 * OGLContext *context;
47 OGLContext *context;
52 * required by and is encapsulated by the platform-independent OGLContext
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLGraphicsConfig.java40 OGLContext getContext();
H A DOGLMaskBlit.java65 OGLContext.validateContext(oglDst, oglDst,
67 OGLContext.NO_CONTEXT_FLAGS);
H A DOGLRenderer.java49 OGLContext.SRC_IS_OPAQUE : OGLContext.NO_CONTEXT_FLAGS;
56 OGLContext.validateContext(dstData, dstData,
63 int ctxflags = OGLContext.NO_CONTEXT_FLAGS;
70 OGLContext.validateContext(dstData, dstData,
82 OGLContext.SRC_IS_OPAQUE : OGLContext.NO_CONTEXT_FLAGS;
89 OGLContext.validateContext(dstData, dstData,
H A DOGLTextRenderer.java52 OGLContext.validateContext(oglDst, oglDst,
55 OGLContext.NO_CONTEXT_FLAGS);
H A DOGLUtilities.java109 OGLContext.validateContext((OGLSurfaceData)sData);
117 OGLContext.invalidateCurrentContext();
160 OGLContext.setScratchSurface((OGLGraphicsConfig)config);
167 OGLContext.invalidateCurrentContext();
/openjdk7/jdk/src/windows/classes/sun/java2d/opengl/
H A DWGLGraphicsConfig.java55 import static sun.java2d.opengl.OGLContext.OGLContextCaps.*;
57 import sun.java2d.opengl.OGLContext.OGLContextCaps;
72 private OGLContext context;
90 context = new OGLContext(OGLRenderQueue.getInstance(), this);
125 OGLContext.invalidateCurrentContext();
131 OGLContext.setScratchSurface(cfginfo);
134 ids[0] = OGLContext.getOGLIdString();
177 * See OGLContext.java for a list of supported capabilities.
195 public final OGLContext getContext() {
238 OGLContext
[all...]
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLGraphicsConfig.h32 #import "OGLContext.h"
85 * OGLContext *context;
91 OGLContext *context;
96 * required by and is encapsulated by the platform-independent OGLContext
H A DCGLSurfaceData.m59 OGLSD_UnlockFocus(OGLContext *oglc, OGLSDOps *dstOps)
81 CGLSD_MakeCurrentToScratch(JNIEnv *env, OGLContext *oglc)
137 OGLContext *oglc = cglInfo->context;
176 * OGLContext that is associated with the given GraphicsConfig.
178 OGLContext *
189 OGLContext *oglc = cglInfo->context;
199 OGLContext *currentContext = OGLRenderQueue_GetCurrentContext();
227 * will return NULL; otherwise, returns a pointer to the OGLContext that is
230 OGLContext *
239 OGLContext *ogl
[all...]
/openjdk7/jdk/src/solaris/classes/sun/java2d/opengl/
H A DGLXGraphicsConfig.java59 import static sun.java2d.opengl.OGLContext.*;
60 import static sun.java2d.opengl.OGLContext.OGLContextCaps.*;
73 private OGLContext context;
87 context = new OGLContext(OGLRenderQueue.getInstance(), this);
118 OGLContext.invalidateCurrentContext();
124 OGLContext.setScratchSurface(cfginfo);
127 ids[0] = OGLContext.getOGLIdString();
166 * See OGLContext.java for a list of supported capabilities.
184 public final OGLContext getContext() {
/openjdk7/jdk/src/macosx/classes/sun/java2d/opengl/
H A DCGLGraphicsConfig.java60 import sun.java2d.opengl.OGLContext.OGLContextCaps;
65 import static sun.java2d.opengl.OGLContext.OGLContextCaps.*;
84 private OGLContext context;
106 context = new OGLContext(OGLRenderQueue.getInstance(), this);
146 OGLContext.invalidateCurrentContext();
151 OGLContext.setScratchSurface(cfginfo);
154 ids[0] = OGLContext.getOGLIdString();
177 * See OGLContext.java for a list of supported capabilities.
192 public final OGLContext getContext() {
252 OGLContext
[all...]

Completed in 93 milliseconds

123