HomeSort by: relevance | last modified time | path
    Searched defs:bin_size (Results 1 - 4 of 4) sorted by relevancy

  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_state_binning.c 371 struct uvec2 bin_size = color_area < depth_area ? color_bin_size local
374 if (!bin_size.x || !bin_size.y) {
422 if (bin_size.x >= 32)
423 bin_size_extend.x = util_logbase2(bin_size.x) - 5;
424 if (bin_size.y >= 32)
425 bin_size_extend.y = util_logbase2(bin_size.y) - 5;
432 S_028C44_BIN_SIZE_X(bin_size.x == 16) |
433 S_028C44_BIN_SIZE_Y(bin_size.y == 16) |
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_state_binning.c 410 struct uvec2 bin_size = {}; local
413 bin_size.x = 128;
414 bin_size.y = sctx->framebuffer.min_bytes_per_pixel <= 4 ? 128 : 64;
416 if (bin_size.x >= 32)
417 bin_size_extend.x = util_logbase2(bin_size.x) - 5;
418 if (bin_size.y >= 32)
419 bin_size_extend.y = util_logbase2(bin_size.y) - 5;
424 S_028C44_BIN_SIZE_X(bin_size.x == 16) | S_028C44_BIN_SIZE_Y(bin_size.y == 16) |
488 struct uvec2 bin_size = color_area < depth_area ? color_bin_size : depth_bin_size local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_device.h 143 unsigned bin_size; member in struct:panfrost_tiler_features
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_pipeline.c 2660 VkExtent2D bin_size = radv_compute_bin_size(pipeline, pCreateInfo); local
2686 if (pipeline->device->pbb_allowed && bin_size.width && bin_size.height) {
2689 S_028C44_BIN_SIZE_X(bin_size.width == 16) |
2690 S_028C44_BIN_SIZE_Y(bin_size.height == 16) |
2691 S_028C44_BIN_SIZE_X_EXTEND(util_logbase2(MAX2(bin_size.width, 32)) - 5) |
2692 S_028C44_BIN_SIZE_Y_EXTEND(util_logbase2(MAX2(bin_size.height, 32)) - 5) |

Completed in 8 milliseconds