Home | History | Annotate | Download | only in core

Lines Matching defs:thickness

1394 *       Compute surface thickness
1397 * Surface thickness
1403 return m_modeFlags[tileMode].thickness;
2956 UINT_32 thickness = ComputeSurfaceThickness(tileMode);
3022 ADDR_ASSERT(thickness == 1);
3064 if (thickness > 1)
3072 ADDR_ASSERT(thickness > 1);
3111 if (thickness == 8)
3187 UINT_32 thickness = ComputeSurfaceThickness(tileMode);
3232 if (padDims > 2 || thickness > 1)
3242 if (thickness > 1)
3508 UINT_32 thickness = ComputeSurfaceThickness(tileMode);
3519 *pTileMode = thickness == 1 ? ADDR_TM_1D_TILED_THIN1 : ADDR_TM_1D_TILED_THICK;
3522 else if (thickness > 1)
3550 * Check if the thickness needs to be reduced if a tile is too large
3560 // When tile_width (8) * tile_height (8) * thickness * element_bytes is > row_size,
3562 UINT_32 thickness = ComputeSurfaceThickness(tileMode);
3564 if (thickness > 1 && m_configFlags.allowLargeThickTile == 0)
3566 UINT_32 tileSize = MicroTilePixels * thickness * (bpp >> 3);