HomeSort by relevance Sort by last modified time
    Searched full:drawop (Results 1 - 15 of 15) sorted by null

  /external/deqp/modules/egl/
teglRenderTests.cpp 136 void randomizeDrawOp (de::Random& rnd, DrawPrimitiveOp& drawOp)
152 drawOp.type = (PrimitiveType)rnd.getInt(0, PRIMITIVETYPE_LAST-1);
153 drawOp.count = rnd.getInt(minPrimitives, maxPrimitives);
154 drawOp.blend = (BlendMode)rnd.getInt(0, BLENDMODE_LAST-1);
155 drawOp.depth = (DepthMode)rnd.getInt(0, DEPTHMODE_LAST-1);
156 drawOp.stencil = (StencilMode)rnd.getInt(0, STENCILMODE_LAST-1);
157 drawOp.stencilRef = rnd.getInt(minStencilRef, maxStencilRef);
159 if (drawOp.type == PRIMITIVETYPE_TRIANGLE)
161 drawOp.positions.resize(drawOp.count*3)
    [all...]
  /frameworks/base/libs/hwui/
DeferredDisplayList.h 35 class DrawOp;
73 OpStatePair(DrawOp* newOp, const DeferredDisplayState* newState)
77 DrawOp* op;
120 void addDrawOp(OpenGLRenderer& renderer, DrawOp* op);
DisplayListOp.h 115 class DrawOp : public DisplayListOp {
118 DrawOp(const SkPaint* paint)
239 class DrawBoundedOp : public DrawOp {
242 : DrawOp(paint), mLocalBounds(left, top, right, bottom) {}
245 : DrawOp(paint), mLocalBounds(localBounds) {}
251 : DrawOp(paint), mLocalBounds(points[0], points[1], points[0], points[1]) {
261 DrawBoundedOp(const SkPaint* paint): DrawOp(paint) { }
    [all...]
DisplayListRenderer.cpp 366 DrawOp* op = new (alloc()) DrawTextOnPathOp(text, bytesCount, count, path,
380 DrawOp* op = new (alloc()) DrawPosTextOp(text, bytesCount, count, positions, paint);
427 DrawOp* op = new (alloc()) DrawTextOp(text, bytesCount, count,
504 size_t DisplayListRenderer::addDrawOp(DrawOp* op) {
DeferredDisplayList.cpp 70 virtual void add(DrawOp* op, const DeferredDisplayState* state, bool opaqueOverBounds) {
101 DrawOp* op = mOps[i].op;
184 bool canMergeWith(const DrawOp* op, const DeferredDisplayState* state) {
261 virtual void add(DrawOp* op, const DeferredDisplayState* state, bool opaqueOverBounds) {
283 DrawOp* op = mOps[0].op;
500 void DeferredDisplayList::addDrawOp(OpenGLRenderer& renderer, DrawOp* op) {
DisplayListRenderer.h 51 class DrawOp;
183 size_t addDrawOp(DrawOp* op);
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipePriv.h 89 * DrawOp packs into a 32bit int as follows
91 * DrawOp:8 - Flags:4 - Data:20
131 /** DrawOp specific flag bits
SkGPipeRead.cpp 939 // SkDEBUGCODE(DrawOps drawOp = (DrawOps)op;)
SkGPipeWrite.cpp 488 needed += 4; // size of DrawOp atom
    [all...]
  /external/skia/src/pipe/
SkGPipePriv.h 87 * DrawOp packs into a 32bit int as follows
89 * DrawOp:8 - Flags:4 - Data:20
129 /** DrawOp specific flag bits
SkGPipeRead.cpp 879 // SkDEBUGCODE(DrawOps drawOp = (DrawOps)op;)
SkGPipeWrite.cpp 477 needed += 4; // size of DrawOp atom
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SweepTests.java 359 protected void sweepModifiersForMask(int mask, final DisplayModifier drawOp,
375 if (drawOp != null) {
376 drawOp.modifyDrawing(paint, canvas);
  /external/chromium_org/third_party/skia/src/core/
SkPictureRecord.cpp 720 DrawType drawOp = peek_op_and_size(&fWriter, -offset, &opSize);
721 SkASSERT(SAVE == drawOp || SAVE_LAYER == drawOp);
    [all...]
  /external/skia/src/core/
SkPictureRecord.cpp 768 DrawType drawOp = peek_op_and_size(&fWriter, -offset, &opSize);
769 SkASSERT(SAVE == drawOp || SAVE_LAYER == drawOp);
    [all...]

Completed in 603 milliseconds