Lines Matching refs:mipmapInfo
1160 MipmapResourceInfo mipmapInfo; in GetMipmapAddress() local
1161 mipmapInfo.m_Width = m_Width; in GetMipmapAddress()
1162 mipmapInfo.m_Height = m_Height; in GetMipmapAddress()
1163 mipmapInfo.m_MemAddr = m_MemAddr; in GetMipmapAddress()
1166 mipmapInfo.m_MemAddr += (mipmapInfo.m_Width * mipmapInfo.m_Height * m_PixelSize) >> 3; in GetMipmapAddress()
1167 mipmapInfo.m_Width >>= 1; in GetMipmapAddress()
1168 mipmapInfo.m_Height >>= 1; in GetMipmapAddress()
1170 return mipmapInfo; in GetMipmapAddress()
1321 MipmapResourceInfo mipmapInfo; in GetMipmapAddress() local
1322 mipmapInfo.m_Width = m_Width; in GetMipmapAddress()
1323 mipmapInfo.m_Height = m_Height; in GetMipmapAddress()
1324 mipmapInfo.m_MemAddr = m_MemAddr[faceIndex]; in GetMipmapAddress()
1327 mipmapInfo.m_MemAddr += (mipmapInfo.m_Width * mipmapInfo.m_Height * m_PixelSize) >> 3; in GetMipmapAddress()
1328 mipmapInfo.m_Width >>= 1; in GetMipmapAddress()
1329 mipmapInfo.m_Height >>= 1; in GetMipmapAddress()
1331 return mipmapInfo; in GetMipmapAddress()