• Home
  • Raw
  • Download

Lines Matching refs:slices

82                 struct panfrost_slice *slices,  in panfrost_needs_explicit_stride()  argument
88 unsigned actual = slices[l].stride; in panfrost_needs_explicit_stride()
267 struct panfrost_slice *slices) in panfrost_emit_texture_payload() argument
290 slices, dim == MALI_TEXTURE_DIMENSION_3D, in panfrost_emit_texture_payload()
295 slices[l].stride : in panfrost_emit_texture_payload()
319 struct panfrost_slice *slices) in panfrost_emit_texture_payload_v7() argument
347 panfrost_texture_offset(slices, is_3d, in panfrost_emit_texture_payload_v7()
353 slices[l].stride : in panfrost_emit_texture_payload_v7()
381 struct panfrost_slice *slices) in panfrost_new_texture() argument
389 && panfrost_needs_explicit_stride(slices, width, in panfrost_new_texture()
417 slices); in panfrost_new_texture()
435 struct panfrost_slice *slices, in panfrost_new_texture_bifrost() argument
452 slices); in panfrost_new_texture_bifrost()
465 slices); in panfrost_new_texture_bifrost()
513 panfrost_get_layer_stride(struct panfrost_slice *slices, bool is_3d, unsigned cube_stride, unsigned… in panfrost_get_layer_stride() argument
515 return is_3d ? slices[level].size0 : cube_stride; in panfrost_get_layer_stride()
522 panfrost_texture_offset(struct panfrost_slice *slices, bool is_3d, unsigned cube_stride, unsigned l… in panfrost_texture_offset() argument
524 unsigned layer_stride = panfrost_get_layer_stride(slices, is_3d, cube_stride, level); in panfrost_texture_offset()
525 return slices[level].offset + (face * layer_stride) + (sample * slices[level].size0); in panfrost_texture_offset()