Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Shim ¶
type Shim interface { // CmdDrawIndexedIndirectCount draws with indirect parameters, indexed vertices, and draw count // // buffer - The Buffer containing draw parameters // // offset - The byte offset into buffer where parameters begin // // countBuffer - The Buffer containing the draw count // // countBufferOffset - The byte offset into countBuffer where the draw count begins // // maxDrawCount - Specifies the maximum number of draws that will be executed. // // stride - The byte stride between successive sets of draw parameters // // https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCmdDrawIndexedIndirectCount.html CmdDrawIndexedIndirectCount(buffer core1_0.Buffer, offset uint64, countBuffer core1_0.Buffer, countBufferOffset uint64, maxDrawCount, stride int) // CmdDrawIndirectCount draws primitives with indirect parameters and draw count // // buffer - The Buffer containing draw parameters // // offset - The byte offset into buffer where parameters begin // // countBuffer - The Buffer containing the draw count // // countBufferOffset - The byte offset into countBuffer where the draw count begins // // maxDrawCount - Specifies the maximum number of draws that will be executed. // // stride - The byte stride between successive sets of draw parameters // // https://www.khronos.org/registry/vulkan/specs/1.3-extensions/man/html/vkCmdDrawIndirectCount.html CmdDrawIndirectCount(buffer core1_0.Buffer, offset uint64, countBuffer core1_0.Buffer, countBufferOffset uint64, maxDrawCount, stride int) }
Shim contains all the commands for the khr_draw_indirect_count extension
type VulkanShim ¶
type VulkanShim struct {
// contains filtered or unexported fields
}
func NewShim ¶
func NewShim(extension khr_draw_indirect_count.Extension, buffer core1_0.CommandBuffer) *VulkanShim
func (*VulkanShim) CmdDrawIndexedIndirectCount ¶
func (*VulkanShim) CmdDrawIndirectCount ¶
Click to show internal directories.
Click to hide internal directories.