Home
last modified time | relevance | path

Searched refs:DRAW (Results 1 – 8 of 8) sorted by relevance

/external/skia/src/core/
DSkRecordDraw.cpp78 #define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; } macro
79 DRAW(Restore, restore());
80 DRAW(Save, save());
81 DRAW(SaveLayer, saveLayer(SkCanvas::SaveLayerRec(r.bounds, r.paint, r.backdrop, r.saveLayerFlags)));
82 DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
83 DRAW(Concat, concat(r.matrix));
85 DRAW(ClipPath, clipPath(r.path, r.opAA.op, r.opAA.aa));
86 DRAW(ClipRRect, clipRRect(r.rrect, r.opAA.op, r.opAA.aa));
87 DRAW(ClipRect, clipRect(r.rect, r.opAA.op, r.opAA.aa));
88 DRAW(ClipRegion, clipRegion(r.region, r.op));
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DGameComponent.java37 DRAW, // drawing commands are scheduled. enumConstant
DRenderComponent.java36 setPhase(ComponentPhases.DRAW.ordinal()); in RenderComponent()
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
DOcclusionBuffer.java46 DRAW, QUERY; enumConstant
54 case DRAW: in evaluate()
78 case DRAW: in process()
251 drawBox(box, Policy.DRAW); in drawAABB()
267 drawBox(box, Policy.DRAW); in drawBB()
/external/vulkan-validation-layers/demos/smoke/
DSmoke.h83 DRAW, enumerator
DSmoke.cpp876 state_ = DRAW; in draw_objects()
905 assert(state_ == STEP || state_ == DRAW); in update_loop()
/external/vulkan-validation-layers/layers/
Dcore_validation.h382 DRAW = 0, enumerator
386 DRAW_BEGIN_RANGE = DRAW,
Dcore_validation.cpp7640 pCB->drawCount[DRAW]++; in vkCmdDraw()
7645 …, DRAWSTATE_NONE, "DS", "vkCmdDraw() call #%" PRIu64 ", reporting DS state:", g_drawCount[DRAW]++); in vkCmdDraw()