Home
last modified time | relevance | path

Searched refs:create_trivial (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/libs/hwui/
DRecordingCanvas.cpp91 addOp(alloc().create_trivial<EndLayerOp>()); in onSnapshotRestored()
93 addOp(alloc().create_trivial<EndUnclippedLayerOp>()); in onSnapshotRestored()
161 if (addOp(alloc().create_trivial<BeginLayerOp>( in saveLayer()
177 if (addOp(alloc().create_trivial<BeginUnclippedLayerOp>( in saveLayer()
240 addOp(alloc().create_trivial<ColorOp>(getRecordedClip(), color, mode)); in drawColor()
263 addOp(alloc().create_trivial<PointsOp>( in drawPoints()
272 addOp(alloc().create_trivial<LinesOp>( in drawLines()
281 addOp(alloc().create_trivial<RectOp>(Rect(left, top, right, bottom), in drawRect()
312 addOp(alloc().create_trivial<SimpleRectsOp>( in drawSimpleRects()
350 addOp(alloc().create_trivial<RoundRectOp>(Rect(left, top, right, bottom), in drawRoundRect()
[all …]
DBakedOpState.cpp117 allocator.create_trivial<BakedOpState>(allocator, snapshot, recordedOp, false, false); in tryConstruct()
129 return allocator.create_trivial<BakedOpState>(allocator, snapshot, recordedOp); in tryConstructUnbounded()
141 BakedOpState* bakedState = allocator.create_trivial<BakedOpState>( in tryStrokeableOpConstruct()
157 return allocator.create_trivial<BakedOpState>(allocator, snapshot, shadowOpPtr); in tryShadowOpConstruct()
162 return allocator.create_trivial<BakedOpState>(clip, dstRect, recordedOp); in directConstruct()
DFrameBuilder.cpp281 LayerOp* drawLayerOp = mAllocator.create_trivial<LayerOp>(node); in deferNodePropsAndOps()
292 deferBeginLayerOp(*mAllocator.create_trivial<BeginLayerOp>( in deferNodePropsAndOps()
297 deferEndLayerOp(*mAllocator.create_trivial<EndLayerOp>()); in deferNodePropsAndOps()
628 const BitmapRectOp* resolvedOp = mAllocator.create_trivial<BitmapRectOp>( in deferVectorDrawableOp()
641 const OvalOp* resolvedOp = mAllocator.create_trivial<OvalOp>(unmappedBounds, op.localMatrix, in deferCirclePropsOp()
713 const RoundRectOp* resolvedOp = mAllocator.create_trivial<RoundRectOp>( in deferRoundRectPropsOp()
902 LayerOp* drawLayerOp = mAllocator.create_trivial<LayerOp>( in deferEndLayerOp()
939 auto copyToOp = mAllocator.create_trivial<CopyToLayerOp>(op, layerHandle); in deferBeginUnclippedLayerOp()
954 auto copyFromOp = mAllocator.create_trivial<CopyFromLayerOp>(op, layerHandle); in deferBeginUnclippedLayerOp()
DDamageAccumulator.cpp48 mHead = mAllocator.create_trivial<DirtyStack>(); in DamageAccumulator()
82 DirtyStack* nextFrame = mAllocator.create_trivial<DirtyStack>(); in pushCommon()
DLayerBuilder.cpp276 SimpleRectsOp* op = allocator.create_trivial<SimpleRectsOp>( in flushLayerClears()
/frameworks/base/libs/hwui/tests/unit/
DLinearAllocatorTests.cpp56 la.create_trivial<SimplePair>(); in TEST()
/frameworks/base/libs/hwui/utils/
DLinearAllocator.h81 T* create_trivial(Params&&... params) { in create_trivial() function