Lines Matching refs:GraphicsPrimitive

55 public abstract class GraphicsPrimitive {
64 GraphicsPrimitive genericop,
69 * GraphicsPrimitive. They are used by setupGeneralBinaryOp
86 GraphicsPrimitive genericop,
91 * GraphicsPrimitive. They are used by setupGeneralUnaryOp
138 * Create a new GraphicsPrimitive with all of the required
141 protected GraphicsPrimitive(String methodSignature,
155 this.uniqueID = GraphicsPrimitive.makeUniqueID(primTypeID,
163 * Create a new GraphicsPrimitive for native invocation
166 protected GraphicsPrimitive(long pNativePrim,
182 this.uniqueID = GraphicsPrimitive.makeUniqueID(primTypeID,
198 * that uniquely identify each instance of a GraphicsPrimitive
219 * Gets unique id for this GraphicsPrimitive type.
306 final boolean satisfiesSameAs(GraphicsPrimitive other) {
313 public abstract GraphicsPrimitive makePrimitive(SurfaceType srctype,
317 public abstract GraphicsPrimitive traceWrap();
339 traceflags |= GraphicsPrimitive.TRACECOUNTS;
341 traceflags |= GraphicsPrimitive.TRACELOG;
343 traceflags |= GraphicsPrimitive.TRACETIMESTAMP;
358 System.err.print("GraphicsPrimitive logging ");
359 if ((traceflags & GraphicsPrimitive.TRACELOG) != 0) {
361 System.err.print("GraphicsPrimitive timetamps ");
362 if ((traceflags & GraphicsPrimitive.TRACETIMESTAMP) != 0) {
370 System.err.print("GraphicsPrimitive invocation counts ");
371 if ((traceflags & GraphicsPrimitive.TRACECOUNTS) != 0) {
376 System.err.print("GraphicsPrimitive trace output to ");
383 GraphicsPrimitive.traceflags = traceflags;
484 GraphicsPrimitive performop;
513 GraphicsPrimitive performop = getGeneralOp(primID, comptype);
576 protected static GraphicsPrimitive getGeneralOp(int primID,