Home
last modified time | relevance | path

Searched refs:MAX_VBS (Results 1 – 17 of 17) sorted by relevance

/external/mesa3d/src/broadcom/vulkan/
Dv3dv_limits.h35 #define MAX_VBS 16 macro
Dv3dv_private.h969 struct v3dv_vertex_binding vertex_bindings[MAX_VBS];
1583 } vb[MAX_VBS];
Dv3dv_device.c858 .maxVertexInputBindings = MAX_VBS, in v3dv_GetPhysicalDeviceProperties()
Dv3dv_cmd_buffer.c4519 assert(firstBinding + bindingCount <= MAX_VBS); in v3dv_CmdBindVertexBuffers()
/external/mesa3d/src/amd/vulkan/
Dradv_constants.h33 #define MAX_VBS 32 macro
Dradv_private.h1434 struct radv_vertex_binding vertex_bindings[MAX_VBS];
1733 uint32_t binding_stride[MAX_VBS];
Dradv_cmd_buffer.c3822 assert(firstBinding + bindingCount <= MAX_VBS); in radv_CmdBindVertexBuffers2EXT()
Dradv_device.c1558 .maxVertexInputBindings = MAX_VBS, in radv_GetPhysicalDeviceProperties()
/external/mesa3d/docs/relnotes/
D17.1.9.rst58 - radv: Fix off by one in MAX_VBS assert.
/external/mesa3d/src/freedreno/vulkan/
Dtu_private.h88 #define MAX_VBS 32 macro
865 } vb[MAX_VBS];
Dtu_cmd_buffer.c1578 cmd->state.vertex_buffers.iova = tu_cs_draw_state(&cmd->sub_cs, &cs, 4 * MAX_VBS).iova; in tu_CmdBindVertexBuffers2EXT()
1589 for (uint32_t i = 0; i < MAX_VBS; i++) { in tu_CmdBindVertexBuffers2EXT()
1600 tu_cs_draw_state(&cmd->sub_cs, &cs, 2 * MAX_VBS).iova; in tu_CmdBindVertexBuffers2EXT()
1602 for (uint32_t i = 0; i < MAX_VBS; i++) in tu_CmdBindVertexBuffers2EXT()
Dtu_pipeline.c1549 uint32_t step_rate[MAX_VBS]; in tu6_emit_vertex_input()
/external/mesa3d/src/intel/vulkan/
Danv_private.h166 #define MAX_VBS 28 macro
220 #define ANV_SVGS_VB_INDEX MAX_VBS
221 #define ANV_DRAWID_VB_INDEX (MAX_VBS + 1)
2941 struct anv_vertex_binding vertex_bindings[MAX_VBS];
3476 } vb[MAX_VBS];
Danv_cmd_buffer.c916 assert(firstBinding + bindingCount <= MAX_VBS); in anv_CmdBindVertexBuffers2EXT()
Danv_device.c1549 .maxVertexInputAttributes = MAX_VBS, in anv_GetPhysicalDeviceProperties()
1550 .maxVertexInputBindings = MAX_VBS, in anv_GetPhysicalDeviceProperties()
Danv_pipeline.c2234 for (uint32_t vb = 0; vb < MAX_VBS; vb++) { in anv_graphics_pipeline_init()
DgenX_pipeline.c155 assert(desc->binding < MAX_VBS); in emit_vertex_input()