Package apple.metal.protocol
Interface MTLBinaryArchive
-
public interface MTLBinaryArchive[@protocol] MTLBinaryArchive A container of pipeline state descriptors and their associated compiled code. A MTLBinaryArchive allows to persist compiled pipeline state objects for a device, which can be used to skip recompilation on a subsequent run of the app. One or more archives may be supplied in the descriptor of a pipeline state, allowing the device to attempt to look up compiled code in them before performing compilation. If no archives are provided, or no archives contain the requested content, the pipeline state is created by compiling the code as usual. Note that software updates of the OS or device drivers may cause the archive to become outdated, causing the lookup to fail and the usual path performing on-demand compilation is taken. A MTLBinaryArchive is populated by adding functions from pipeline state descriptors to it, indicating which compiled code should be persisted in the archive. Once all desired pipeline state descriptors have been added, use serializeToURL:error: to write the contents for the current device to disk. MTLBinaryArchive files generated for multiple different devices can be combined using the "lipo" tool into a single archive, which can then be shipped with the application. It is possible to maintain different archive files for different contexts; for example each level in a game may use a different cache object. Note: Metal maintains a separate cache of pipeline states on behalf of each app that contains all compiled code; this cache is populated as compilation occurs. This cache will automatically accelerate pipeline state creation after a pipeline is created for the first time. Use MTLBinaryArchive to augment that cache by accelerating pipeline state creation even on the first run of an app. Updating a MTLBinaryArchive at runtime in a shipping app configuration is not recommended; such a scenario requires corruption resiliency, careful storage space management and may cache hard-to-reproduce errors. These kind of issues are handled transparently by the Metal maintained cache, therefore we recommend that MTLBinaryArchive is populated during development time and shipped as an asset.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaddComputePipelineFunctionsWithDescriptorError(MTLComputePipelineDescriptor descriptor, org.moe.natj.general.ptr.Ptr<NSError> error)addComputePipelineFunctionsWithDescriptor:error: Add the function(s) from a compute pipeline state to the archive.booleanaddRenderPipelineFunctionsWithDescriptorError(MTLRenderPipelineDescriptor descriptor, org.moe.natj.general.ptr.Ptr<NSError> error)addRenderPipelineFunctionsWithDescriptor:error: Add the function(s) from a render pipeline state to the archive.booleanaddTileRenderPipelineFunctionsWithDescriptorError(MTLTileRenderPipelineDescriptor descriptor, org.moe.natj.general.ptr.Ptr<NSError> error)addTileRenderPipelineFunctionsWithDescriptor:error: Add the function(s) from a tile render pipeline state to the archive.MTLDevicedevice()[@property] device The device this resource was created against.java.lang.Stringlabel()[@property] label A string to help identify this object.booleanserializeToURLError(NSURL url, org.moe.natj.general.ptr.Ptr<NSError> error)serializeToURL:error: Write the contents of a MTLBinaryArchive to a file.voidsetLabel(java.lang.String value)[@property] label A string to help identify this object.
-
-
-
Method Detail
-
addComputePipelineFunctionsWithDescriptorError
boolean addComputePipelineFunctionsWithDescriptorError(MTLComputePipelineDescriptor descriptor, org.moe.natj.general.ptr.Ptr<NSError> error)
addComputePipelineFunctionsWithDescriptor:error: Add the function(s) from a compute pipeline state to the archive.- Parameters:
descriptor- The descriptor from which function(s) will be added.error- If the function fails, this will be set to describe the failure. This can be (but is not required to be) an error from the MTLBinaryArchiveDomain domain.- Returns:
- Whether or not the addition succeeded. Functions referenced multiple times are silently accepted.
-
addRenderPipelineFunctionsWithDescriptorError
boolean addRenderPipelineFunctionsWithDescriptorError(MTLRenderPipelineDescriptor descriptor, org.moe.natj.general.ptr.Ptr<NSError> error)
addRenderPipelineFunctionsWithDescriptor:error: Add the function(s) from a render pipeline state to the archive.- Parameters:
descriptor- The descriptor from which function(s) will be added.error- If the function fails, this will be set to describe the failure. This can be (but is not required to be) an error from the MTLBinaryArchiveDomain domain.- Returns:
- Whether or not the addition succeeded. Functions referenced multiple times are silently accepted.
-
addTileRenderPipelineFunctionsWithDescriptorError
boolean addTileRenderPipelineFunctionsWithDescriptorError(MTLTileRenderPipelineDescriptor descriptor, org.moe.natj.general.ptr.Ptr<NSError> error)
addTileRenderPipelineFunctionsWithDescriptor:error: Add the function(s) from a tile render pipeline state to the archive.- Parameters:
descriptor- The descriptor from which function(s) will be added.error- If the function fails, this will be set to describe the failure. This can be (but is not required to be) an error from the MTLBinaryArchiveDomain domain.- Returns:
- Whether or not the addition succeeded. Functions referenced multiple times are silently accepted.
-
device
MTLDevice device()
[@property] device The device this resource was created against. This resource can only be used with this device.
-
label
java.lang.String label()
[@property] label A string to help identify this object.
-
serializeToURLError
boolean serializeToURLError(NSURL url, org.moe.natj.general.ptr.Ptr<NSError> error)
serializeToURL:error: Write the contents of a MTLBinaryArchive to a file. Persisting the archive to a file allows opening the archive on a subsequent instance of the app, making available the contents without recompiling.- Parameters:
url- The file URL to which to write the fileerror- If the function fails, this will be set to describe the failure. This can be (but is not required to be) an error from the MTLBinaryArchiveDomain domain. Other possible errors can be file access or I/O related.- Returns:
- Whether or not the writing the file succeeded.
-
setLabel
void setLabel(java.lang.String value)
[@property] label A string to help identify this object.
-
-