Home
last modified time | relevance | path

Searched refs:sramAmountParams (Results 1 – 3 of 3) sorted by relevance

/hardware/google/graphics/zuma/libhwc2.1/
DExynosHWCModule.h247 class sramAmountParams {
254 sramAmountParams(tdm_attr_t _attr, uint32_t _formatProperty, lbWidthIndex_t _widthIndex) in sramAmountParams() function
256 bool operator<(const sramAmountParams& rhs) const {
274 const std::map<sramAmountParams, uint32_t> sramAmountMap = {
277 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_8_512), 4},
278 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_513_1024), 4},
279 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_1025_1536), 8},
280 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_1537_2048), 8},
281 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_2049_2304), 12},
282 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_2305_2560), 12},
[all …]
/hardware/google/graphics/zumapro/libhwc2.1/
DExynosHWCModule.h236 class sramAmountParams {
243 sramAmountParams(tdm_attr_t _attr, uint32_t _formatProperty, in sramAmountParams() function
246 bool operator<(const sramAmountParams &rhs) const {
267 const std::map<sramAmountParams, uint32_t> sramAmountMap = {
270 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_8_512), 4},
271 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_513_1024), 4},
272 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_1025_1536), 8},
273 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_1537_2048), 8},
274 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_2049_2304), 12},
275 {sramAmountParams(TDM_ATTR_AFBC, RGB | BIT8, LB_W_2305_2560), 12},
[all …]
/hardware/google/graphics/zuma/libhwc2.1/libresource/
DExynosResourceManagerModule.cpp245 auto it = sramAmountMap.find(sramAmountParams(attr, formatProperty, widthIndex)); in getSramAmount()