Home
last modified time | relevance | path

Searched refs:byte_y (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/iris/
Diris_resource.c1593 uint32_t byte_y = y % tile_height; in s8_offset() local
1598 + 64 * (byte_y / 8) in s8_offset()
1599 + 32 * ((byte_y / 4) % 2) in s8_offset()
1601 + 8 * ((byte_y / 2) % 2) in s8_offset()
1603 + 2 * (byte_y % 2) in s8_offset()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_mipmap_tree.c2282 uint32_t byte_y = y % tile_height; in intel_offset_S8() local
2287 + 64 * (byte_y / 8) in intel_offset_S8()
2288 + 32 * ((byte_y / 4) % 2) in intel_offset_S8()
2290 + 8 * ((byte_y / 2) % 2) in intel_offset_S8()
2292 + 2 * (byte_y % 2) in intel_offset_S8()
2298 if (((byte_y / 8) % 2) == 0) { in intel_offset_S8()