Package icyllis.arc3d.granite.trash.ops
Class ClearOp
java.lang.Object
icyllis.arc3d.core.Rect2f
icyllis.arc3d.granite.trash.ops.Op
icyllis.arc3d.granite.trash.ops.ClearOp
- All Implemented Interfaces:
Rect2fc
Deprecated.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NonNull OpmakeColor(int left, int top, int right, int bottom, float red, float green, float blue, float alpha) Deprecated.static @NonNull OpmakeStencil(int left, int top, int right, int bottom, boolean insideMask) Deprecated.voidonExecute(OpFlushState state, Rect2f chainBounds) Deprecated.Issues the op chain's commands toOpsRenderPass.voidonPrepare(OpFlushState state, ImageProxyView writeView, int pipelineFlags) Deprecated.Called prior to executing.voidonPrePrepare(RecordingContext context, ImageProxyView writeView, int pipelineFlags) Deprecated.This can optionally be called before 'prepare' (but after sorting).Methods inherited from class icyllis.arc3d.granite.trash.ops.Op
chainConcat, chainSplit, hasAABloat, hasZeroArea, isChainHead, isChainTail, mayChain, nextInChain, onMayChain, prevInChain, setBoundsFlags, setClippedBounds, validateChain, visitProxiesMethods inherited from class icyllis.arc3d.core.Rect2f
adjust, adjust, adjust, bottom, centerX, centerY, contains, contains, contains, contains, empty, equals, halfHeight, halfWidth, hashCode, height, inset, inset, inset, inset, intersect, intersect, intersect, intersect, intersectNoCheck, intersectNoCheck, intersectNoCheck, intersects, intersects, intersects, intersects, isEmpty, isFinite, isSorted, join, join, join, join, joinNoCheck, joinNoCheck, joinNoCheck, left, makeInfiniteInverted, offset, offsetTo, outset, rectsOverlap, rectsTouchOrOverlap, right, round, round, roundIn, roundIn, roundOut, roundOut, set, set, set, setBounds, setBoundsNoCheck, setEmpty, sort, store, store, subtract, top, toString, width, x, y
-
Method Details
-
makeColor
public static @NonNull Op makeColor(int left, int top, int right, int bottom, float red, float green, float blue, float alpha) Deprecated. -
makeStencil
Deprecated. -
onPrePrepare
Deprecated.Description copied from class:OpThis can optionally be called before 'prepare' (but after sorting). Each op that overrides onPrePrepare must be prepared to handle both cases (when onPrePrepare has been called ahead of time and when it has not been called).- Specified by:
onPrePreparein classOp
-
onPrepare
Deprecated.Description copied from class:OpCalled prior to executing. The op should perform any resource creation or data transfers necessary before execute() is called. -
onExecute
Deprecated.Description copied from class:OpIssues the op chain's commands toOpsRenderPass.
-