Lines Matching refs:dpp
283 const IDisplayColorGS101::IDpp &dpp, uint32_t &blobId) in createEotfBlobFromIDpp() argument
287 if (dpp.EotfLut().config == nullptr) { in createEotfBlobFromIDpp()
292 if ((dpp.EotfLut().config->tf_data.posx.size() != DRM_SAMSUNG_HDR_EOTF_LUT_LEN) || in createEotfBlobFromIDpp()
293 (dpp.EotfLut().config->tf_data.posy.size() != DRM_SAMSUNG_HDR_EOTF_LUT_LEN)) { in createEotfBlobFromIDpp()
295 __func__, dpp.EotfLut().config->tf_data.posx.size(), in createEotfBlobFromIDpp()
296 dpp.EotfLut().config->tf_data.posy.size()); in createEotfBlobFromIDpp()
301 eotf_lut.posx[i] = dpp.EotfLut().config->tf_data.posx[i]; in createEotfBlobFromIDpp()
302 eotf_lut.posy[i] = dpp.EotfLut().config->tf_data.posy[i]; in createEotfBlobFromIDpp()
313 const IDisplayColorGS101::IDpp &dpp, uint32_t &blobId) in createGmBlobFromIDpp() argument
318 if (dpp.Gm().config == nullptr) { in createGmBlobFromIDpp()
323 if ((ret = convertDqeMatrixDataToMatrix(dpp.Gm().config->matrix_data, gm_matrix, in createGmBlobFromIDpp()
338 const IDisplayColorGS101::IDpp &dpp, uint32_t &blobId) in createDtmBlobFromIDpp() argument
342 if (dpp.Dtm().config == nullptr) { in createDtmBlobFromIDpp()
347 if ((dpp.Dtm().config->tf_data.posx.size() != DRM_SAMSUNG_HDR_TM_LUT_LEN) || in createDtmBlobFromIDpp()
348 (dpp.Dtm().config->tf_data.posy.size() != DRM_SAMSUNG_HDR_TM_LUT_LEN)) { in createDtmBlobFromIDpp()
350 __func__, dpp.Dtm().config->tf_data.posx.size(), in createDtmBlobFromIDpp()
351 dpp.Dtm().config->tf_data.posy.size()); in createDtmBlobFromIDpp()
356 tm_data.posx[i] = dpp.Dtm().config->tf_data.posx[i]; in createDtmBlobFromIDpp()
357 tm_data.posy[i] = dpp.Dtm().config->tf_data.posy[i]; in createDtmBlobFromIDpp()
360 tm_data.coeff_r = dpp.Dtm().config->coeff_r; in createDtmBlobFromIDpp()
361 tm_data.coeff_g = dpp.Dtm().config->coeff_g; in createDtmBlobFromIDpp()
362 tm_data.coeff_b = dpp.Dtm().config->coeff_b; in createDtmBlobFromIDpp()
363 tm_data.rng_x_min = dpp.Dtm().config->rng_x_min; in createDtmBlobFromIDpp()
364 tm_data.rng_x_max = dpp.Dtm().config->rng_x_max; in createDtmBlobFromIDpp()
365 tm_data.rng_y_min = dpp.Dtm().config->rng_y_min; in createDtmBlobFromIDpp()
366 tm_data.rng_y_max = dpp.Dtm().config->rng_y_max; in createDtmBlobFromIDpp()
377 const IDisplayColorGS101::IDpp &dpp, uint32_t &blobId) in createOetfBlobFromIDpp() argument
381 if (dpp.OetfLut().config == nullptr) { in createOetfBlobFromIDpp()
386 if ((dpp.OetfLut().config->tf_data.posx.size() != DRM_SAMSUNG_HDR_OETF_LUT_LEN) || in createOetfBlobFromIDpp()
387 (dpp.OetfLut().config->tf_data.posy.size() != DRM_SAMSUNG_HDR_OETF_LUT_LEN)) { in createOetfBlobFromIDpp()
389 __func__, dpp.OetfLut().config->tf_data.posx.size(), in createOetfBlobFromIDpp()
390 dpp.OetfLut().config->tf_data.posy.size()); in createOetfBlobFromIDpp()
395 oetf_lut.posx[i] = dpp.OetfLut().config->tf_data.posx[i]; in createOetfBlobFromIDpp()
396 oetf_lut.posy[i] = dpp.OetfLut().config->tf_data.posy[i]; in createOetfBlobFromIDpp()
561 const IDisplayColorGS101::IDpp &dpp, in setPlaneColorBlob() argument
588 ret = createEotfBlobFromIDpp(dpp, blobId); in setPlaneColorBlob()
591 ret = createGmBlobFromIDpp(dpp, blobId); in setPlaneColorBlob()
594 ret = createDtmBlobFromIDpp(dpp, blobId); in setPlaneColorBlob()
597 ret = createOetfBlobFromIDpp(dpp, blobId); in setPlaneColorBlob()
679 const IDisplayColorGS101::IDpp &dpp = display->getDppForLayer(mppSource); in setPlaneColorSetting() local
686 dpp.EotfLut(), dpp, dppIndex, drmReq, planeChanged) != NO_ERROR)) { in setPlaneColorSetting()
693 dpp.Gm(), dpp, dppIndex, drmReq, planeChanged) != NO_ERROR)) { in setPlaneColorSetting()
700 dpp.Dtm(), dpp, dppIndex, drmReq, planeChanged) != NO_ERROR)) { in setPlaneColorSetting()
707 dpp.OetfLut(), dpp, dppIndex, drmReq, planeChanged) != NO_ERROR)) { in setPlaneColorSetting()