GPURenderPassDepthStencilAttachment
public final class GPURenderPassDepthStencilAttachment
Describes a depth-stencil attachment for a render pass.
Summary
Nested types |
|---|
public final class GPURenderPassDepthStencilAttachment.BuilderBuilder for |
Public constructors |
|---|
GPURenderPassDepthStencilAttachment( |
Public methods |
|
|---|---|
final float |
|
final int |
|
final int |
|
final int |
|
final int |
|
final int |
|
final @NonNull GPUTextureView |
getView()The texture view for the depth-stencil attachment. |
final boolean |
|
final boolean |
|
final void |
setDepthClearValue(float value) |
final void |
setDepthLoadOp(int value) |
final void |
setDepthReadOnly(boolean value) |
final void |
setDepthStoreOp(int value) |
final void |
setStencilClearValue(int value) |
final void |
setStencilLoadOp(int value) |
final void |
setStencilReadOnly(boolean value) |
final void |
setStencilStoreOp(int value) |
final void |
setView(@NonNull GPUTextureView value)The texture view for the depth-stencil attachment. |
Public constructors
GPURenderPassDepthStencilAttachment
Added in 1.0.0-alpha05
public GPURenderPassDepthStencilAttachment(
@NonNull GPUTextureView view,
int depthLoadOp,
int depthStoreOp,
float depthClearValue,
boolean depthReadOnly,
int stencilLoadOp,
int stencilStoreOp,
int stencilClearValue,
boolean stencilReadOnly
)
Public methods
getView
Added in 1.0.0-alpha05
public final @NonNull GPUTextureView getView()
The texture view for the depth-stencil attachment.
setView
Added in 1.0.0-alpha05
public final void setView(@NonNull GPUTextureView value)
The texture view for the depth-stencil attachment.