Interface VulkanComputeWorkGroupCountType
- All Known Implementing Classes:
VulkanComputeWorkGroupCount
@Immutable
public interface VulkanComputeWorkGroupCountType
the maximum number of local workgroups that can be dispatched by a single dispatch command. These
three values represent the maximum number of local workgroups for the X, Y, and Z dimensions,
respectively. The workgroup count parameters to the dispatch commands must be less than or equal
to the corresponding limit.
- See Also:
-
Method Summary
-
Method Details
-
maximumX
@Parameter int maximumX()- Returns:
- The limit on the X dimension
-
maximumY
@Parameter int maximumY()- Returns:
- The limit on the Y dimension
-
maximumZ
@Parameter int maximumZ()- Returns:
- The limit on the Z dimension
-