HomeSort by relevance Sort by last modified time
    Searched defs:ib_size (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/amd/vulkan/winsys/amdgpu/
radv_amdgpu_cs.c 164 uint32_t ib_size = 20 * 1024 * 4; local
173 cs->ib_buffer = ws->buffer_create(ws, ib_size, 0,
190 cs->base.max_dw = ib_size / 4 - 4;
240 uint64_t ib_size = MAX2(min_size * 4 + 16, cs->base.max_dw * 4 * 2); local
243 ib_size = MIN2(ib_size, 0xfffff);
258 cs->ib_buffer = cs->ws->base.buffer_create(&cs->ws->base, ib_size, 0,
286 cs->base.max_dw = ib_size / 4 - 4;
  /external/mesa3d/src/gallium/winsys/amdgpu/drm/
amdgpu_cs.c 548 unsigned ib_size = 0; local
553 ib_size = 256 * 4;
557 ib_size = 8 * 1024 * 4;
561 ib_size = 4 * 1024 * 4;
568 ib_size = MAX2(ib_size,
582 ib->used_ib_space + ib_size > ib->big_ib_buffer->size) {
597 ib_size = ib->big_ib_buffer->size - ib->used_ib_space;
598 ib->base.current.max_dw = ib_size / 4 - amdgpu_cs_epilog_dws(cs->ring_type);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw_upload.c 1168 GLuint ib_size; local
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 395 VkDeviceSize ib_size = 0; local
409 ib_size += mesh.index_buffer_size();
412 allocate_resources(vb_size, ib_size, mem_flags);
446 void Meshes::allocate_resources(VkDeviceSize vb_size, VkDeviceSize ib_size, const std::vector<VkMemoryPropertyFlags> &mem_flags) {
454 buf_info.size = ib_size;

Completed in 8938 milliseconds