• Home
  • Raw
  • Download

Lines Matching refs:frame

1253         AcrylicPerformanceRequestFrame *frame = request->getFrame(i);  in requestPerformanceQoS()  local
1264 for (int idx = 0; idx < frame->getLayerCount(); idx++) { in requestPerformanceQoS()
1265 AcrylicPerformanceRequestLayer *layer = &(frame->mLayers[idx]); in requestPerformanceQoS()
1272 data.frame[i].layer[idx].crop_width = src_hori; in requestPerformanceQoS()
1273 data.frame[i].layer[idx].crop_height = src_vert; in requestPerformanceQoS()
1274 data.frame[i].layer[idx].window_width = dst_hori; in requestPerformanceQoS()
1275 data.frame[i].layer[idx].window_height = dst_vert; in requestPerformanceQoS()
1290 data.frame[i].layer[idx].layer_attr |= G2D_PERF_LAYER_SBWC; in requestPerformanceQoS()
1293 data.frame[i].layer[idx].layer_attr |= G2D_PERF_LAYER_RGB_AFBC; in requestPerformanceQoS()
1295 data.frame[i].layer[idx].layer_attr |= G2D_PERF_LAYER_YUV_AFBC; in requestPerformanceQoS()
1297 data.frame[i].layer[idx].layer_attr |= G2D_PERF_LAYER_YUV2P; in requestPerformanceQoS()
1307 data.frame[i].layer[idx].layer_attr |= G2D_PERF_LAYER_ROTATE; in requestPerformanceQoS()
1334 bandwidth *= frame->mFrameRate; in requestPerformanceQoS()
1337 data.frame[i].bandwidth_read = static_cast<uint32_t>(bandwidth); in requestPerformanceQoS()
1339 bpp = halfmt_bpp(frame->mTargetPixFormat); in requestPerformanceQoS()
1340 bandwidth = frame->mTargetDimension.hori * frame->mTargetDimension.vert; in requestPerformanceQoS()
1341 bandwidth *= frame->mFrameRate * bpp; in requestPerformanceQoS()
1348 data.frame[i].bandwidth_write = static_cast<uint32_t>(bandwidth); in requestPerformanceQoS()
1350 if (frame->mHasBackgroundLayer) in requestPerformanceQoS()
1351 data.frame[i].frame_attr |= G2D_PERF_FRAME_SOLIDCOLORFILL; in requestPerformanceQoS()
1353 data.frame[i].num_layers = frame->getLayerCount(); in requestPerformanceQoS()
1354 … data.frame[i].target_pixelcount = frame->mTargetDimension.vert * frame->mTargetDimension.hori; in requestPerformanceQoS()
1355 data.frame[i].frame_rate = frame->mFrameRate; in requestPerformanceQoS()
1358 …i, data.frame[i].bandwidth_read, data.frame[i].bandwidth_write, data.frame[i].num_layers, frame->m… in requestPerformanceQoS()
1359 frame->mTargetDimension.hori, frame->mTargetDimension.vert, frame->mTargetPixFormat, in requestPerformanceQoS()
1360 frame->mHasBackgroundLayer); in requestPerformanceQoS()