HomeSort by: relevance | last modified time | path
    Searched refs:block_w (Results 1 - 15 of 15) sorted by relevancy

  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_fbo.c 176 int block_w, int block_h,
187 priv->block_w = block_w;
190 block_wcnt = (w + block_w - 1) / block_w;
211 box_array[i * block_wcnt + j].x1 = j * block_w;
214 (j + 1) * block_w > w ? w : (j + 1) * block_w;
glamor_largepixmap.c 30 __glamor_compute_clipped_regions(int block_w,
61 block_w, block_h, x, y, w, h, block_stride);
72 start_block_x = (start_x - x) / block_w;
74 end_block_x = (end_x - x) / block_w;
122 temp_box.x1 = x + i * block_w;
124 temp_box.x2 = MIN(temp_box.x1 + block_w, end_x);
175 int block_w, block_h; local
189 block_w = pixmap->drawable.width;
193 small_box.x2 = block_w;
199 clipped_regions = __glamor_compute_clipped_regions(priv->block_w,
    [all...]
glamor_priv.h 398 int block_w; member in struct:glamor_pixmap_private
620 int flag, int block_w, int block_h,
glamor.c 84 pixmap_priv->block_w = pixmap->drawable.width;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/
lima_job.h 58 int block_w, block_h; member in struct:lima_job_fb_info
lima_context.h 38 int block_w, block_h; member in struct:lima_context_framebuffer
165 uint16_t block_w, block_h; member in struct:lima_ctx_plb_pp_stream_key
lima_gpu.h 127 #define PLBU_CMD_BLOCK_STRIDE(block_w) PLBU_CMD((block_w) & 0xff, 0x30000000)
lima_job.c 82 fb->block_w = width;
459 PLBU_CMD_BLOCK_STRIDE(fb->block_w);
463 fb->block_w * fb->block_h);
579 int offset = ((y >> fb->shift_h) * fb->block_w +
662 .block_w = fb->block_w,
697 s->key.block_w = fb->block_w;
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
texcompress_astc.cpp 545 Decoder(int block_w, int block_h, int block_d, bool srgb, bool output_unorm8)
546 : block_w(block_w), block_h(block_h), block_d(block_d), srgb(srgb),
551 int block_w, block_h, block_d; member in class:Decoder
640 void compute_infill_weights(int block_w, int block_h, int block_d);
656 for (int i = 0; i < block_w * block_h * block_d; ++i) {
1263 void Block::compute_infill_weights(int block_w, int block_h, int block_d)
1265 int Ds = block_w <= 1 ? 0 : (1024 + block_w / 2) / (block_w - 1)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
texcompress_astc.cpp 544 Decoder(int block_w, int block_h, int block_d, bool srgb, bool output_unorm8)
545 : block_w(block_w), block_h(block_h), block_d(block_d), srgb(srgb),
550 int block_w, block_h, block_d; member in class:Decoder
639 void compute_infill_weights(int block_w, int block_h, int block_d);
655 for (int i = 0; i < block_w * block_h * block_d; ++i) {
1262 void Block::compute_infill_weights(int block_w, int block_h, int block_d)
1264 int Ds = block_w <= 1 ? 0 : (1024 + block_w / 2) / (block_w - 1)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
lima_context.h 38 int block_w, block_h; member in struct:lima_context_framebuffer
lima_state.c 78 fb->block_w = width;
84 fb->tiled_w, fb->tiled_h, fb->block_w, fb->block_h,
lima_draw.c 143 #define PLBU_CMD_BLOCK_STRIDE(block_w) PLBU_CMD(block_w, 0x30000000)
410 PLBU_CMD_BLOCK_STRIDE(fb->block_w);
414 fb->block_w * fb->block_h);
562 int offset = ((y >> fb->shift_h) * fb->block_w +
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_texture.c 677 unsigned block_w = util_format_get_blockwidth(iview->format); local
682 DIV_ROUND_UP(u_minify(iview->image->layout.width, l), block_w) *
  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dv_meta_copy.c 406 const uint32_t block_w = vk_format_get_blockwidth(image->vk.format); local
408 const uint32_t width = DIV_ROUND_UP(region->imageExtent.width, block_w);
812 const uint32_t block_w = vk_format_get_blockwidth(src->vk.format); local
814 uint32_t width = DIV_ROUND_UP(region->extent.width, block_w);
914 const uint32_t block_w = vk_format_get_blockwidth(dst->vk.format); local
916 const uint32_t width = DIV_ROUND_UP(region->extent.width, block_w);
1302 const uint32_t block_w = vk_format_get_blockwidth(image->vk.format); local
1304 width = DIV_ROUND_UP(width, block_w);
1418 const uint32_t block_w = vk_format_get_blockwidth(image->vk.format); local
1420 const uint32_t width = DIV_ROUND_UP(region->imageExtent.width, block_w);
4245 const uint32_t block_w = vk_format_get_blockwidth(dst->vk.format); local
    [all...]

Completed in 15 milliseconds