Lines Matching refs:blobId
92 uint32_t blobId = 0; in setDisplayColorBlob() local
98 ret = gs::ColorDrmBlobFactory::cgc(dqe.Cgc().config, mDrmDevice, blobId); in setDisplayColorBlob()
107 mDrmDevice, blobId); in setDisplayColorBlob()
117 mDrmDevice, blobId); in setDisplayColorBlob()
122 blobId); in setDisplayColorBlob()
126 blobId); in setDisplayColorBlob()
130 blobId); in setDisplayColorBlob()
133 … ret = gs::ColorDrmBlobFactory::cgcDither(dqe.DqeControl().config, mDrmDevice, blobId); in setDisplayColorBlob()
145 if ((blobId == 0) && (mOldDqeBlobs.getBlob(type) == 0)) in setDisplayColorBlob()
148 if ((ret = drmReq.atomicAddProperty(mDrmCrtc->id(), prop, blobId)) < 0) { in setDisplayColorBlob()
153 mOldDqeBlobs.addBlob(type, blobId); in setDisplayColorBlob()
269 uint32_t blobId = 0; in setPlaneColorBlob() local
274 ret = gs::ColorDrmBlobFactory::eotf(dpp.EotfLut().config, mDrmDevice, blobId); in setPlaneColorBlob()
277 ret = gs::ColorDrmBlobFactory::gm(dpp.Gm().config, mDrmDevice, blobId); in setPlaneColorBlob()
280 ret = gs::ColorDrmBlobFactory::dtm(dpp.Dtm().config, mDrmDevice, blobId); in setPlaneColorBlob()
283 ret = gs::ColorDrmBlobFactory::oetf(dpp.OetfLut().config, mDrmDevice, blobId); in setPlaneColorBlob()
295 if ((blobId == 0) && (oldDppBlobs.getBlob(type) == 0) && !forceUpdate) in setPlaneColorBlob()
298 if ((ret = drmReq.atomicAddProperty(plane->id(), prop, blobId)) < 0) { in setPlaneColorBlob()
304 oldDppBlobs.addBlob(type, blobId); in setPlaneColorBlob()
485 int32_t ExynosDisplayDrmInterfaceModule::createHistoRoiBlob(uint32_t &blobId) { in createHistoRoiBlob() argument
494 int ret = mDrmDevice->CreatePropertyBlob(&histo_roi, sizeof(histo_roi), &blobId); in createHistoRoiBlob()
503 int32_t ExynosDisplayDrmInterfaceModule::createHistoWeightsBlob(uint32_t &blobId) { in createHistoWeightsBlob() argument
511 int ret = mDrmDevice->CreatePropertyBlob(&histo_weights, sizeof(histo_weights), &blobId); in createHistoWeightsBlob()
526 uint32_t blobId = 0; in setDisplayHistoBlob() local
530 ret = createHistoRoiBlob(blobId); in setDisplayHistoBlob()
533 ret = createHistoWeightsBlob(blobId); in setDisplayHistoBlob()
544 if ((blobId == 0) && (mOldHistoBlobs.getBlob(type) == 0)) return ret; in setDisplayHistoBlob()
546 if ((ret = drmReq.atomicAddProperty(mDrmCrtc->id(), prop, blobId)) < 0) { in setDisplayHistoBlob()
550 mOldHistoBlobs.addBlob(type, blobId); in setDisplayHistoBlob()