Package apple.metal.enums
Class MTLTextureUsage
- java.lang.Object
-
- apple.metal.enums.MTLTextureUsage
-
public final class MTLTextureUsage extends java.lang.Object[@enum] MTLTextureUsage MTLTextureUsage declares how the texture will be used over its lifetime (bitwise OR for multiple uses). This information may be used by the driver to make optimization decisions.
-
-
Field Summary
Fields Modifier and Type Field Description static longPixelFormatViewstatic longRenderTargetstatic longShaderReadstatic longShaderWritestatic longUnknown
-
-
-
Field Detail
-
Unknown
public static final long Unknown
- See Also:
- Constant Field Values
-
ShaderRead
public static final long ShaderRead
- See Also:
- Constant Field Values
-
ShaderWrite
public static final long ShaderWrite
- See Also:
- Constant Field Values
-
RenderTarget
public static final long RenderTarget
- See Also:
- Constant Field Values
-
PixelFormatView
public static final long PixelFormatView
- See Also:
- Constant Field Values
-
-