Lines Matching refs:blobId
95 uint32_t blobId = 0; in setDisplayColorBlob() local
101 ret = gs::ColorDrmBlobFactory::cgc(dqe.Cgc().config, mDrmDevice, blobId); in setDisplayColorBlob()
110 mDrmDevice, blobId); in setDisplayColorBlob()
120 mDrmDevice, blobId); in setDisplayColorBlob()
125 blobId); in setDisplayColorBlob()
129 blobId); in setDisplayColorBlob()
133 blobId); in setDisplayColorBlob()
136 … ret = gs::ColorDrmBlobFactory::cgcDither(dqe.DqeControl().config, mDrmDevice, blobId); in setDisplayColorBlob()
148 if ((blobId == 0) && (mOldDqeBlobs.getBlob(type) == 0)) in setDisplayColorBlob()
151 if ((ret = drmReq.atomicAddProperty(mDrmCrtc->id(), prop, blobId)) < 0) { in setDisplayColorBlob()
156 mOldDqeBlobs.addBlob(type, blobId); in setDisplayColorBlob()
274 uint32_t blobId = 0; in setPlaneColorBlob() local
279 ret = gs::ColorDrmBlobFactory::eotf(dpp.EotfLut().config, mDrmDevice, blobId); in setPlaneColorBlob()
282 ret = gs::ColorDrmBlobFactory::gm(dpp.Gm().config, mDrmDevice, blobId); in setPlaneColorBlob()
285 ret = gs::ColorDrmBlobFactory::dtm(dpp.Dtm().config, mDrmDevice, blobId); in setPlaneColorBlob()
288 ret = gs::ColorDrmBlobFactory::oetf(dpp.OetfLut().config, mDrmDevice, blobId); in setPlaneColorBlob()
300 if ((blobId == 0) && (oldDppBlobs.getBlob(type) == 0) && !forceUpdate) in setPlaneColorBlob()
303 if ((ret = drmReq.atomicAddProperty(plane->id(), prop, blobId)) < 0) { in setPlaneColorBlob()
309 oldDppBlobs.addBlob(type, blobId); in setPlaneColorBlob()
473 int32_t ExynosDisplayDrmInterfaceModule::createHistoRoiBlob(uint32_t &blobId) { in createHistoRoiBlob() argument
482 int ret = mDrmDevice->CreatePropertyBlob(&histo_roi, sizeof(histo_roi), &blobId); in createHistoRoiBlob()
491 int32_t ExynosDisplayDrmInterfaceModule::createHistoWeightsBlob(uint32_t &blobId) { in createHistoWeightsBlob() argument
499 int ret = mDrmDevice->CreatePropertyBlob(&histo_weights, sizeof(histo_weights), &blobId); in createHistoWeightsBlob()
514 uint32_t blobId = 0; in setDisplayHistoBlob() local
518 ret = createHistoRoiBlob(blobId); in setDisplayHistoBlob()
521 ret = createHistoWeightsBlob(blobId); in setDisplayHistoBlob()
532 if ((blobId == 0) && (mOldHistoBlobs.getBlob(type) == 0)) return ret; in setDisplayHistoBlob()
534 if ((ret = drmReq.atomicAddProperty(mDrmCrtc->id(), prop, blobId)) < 0) { in setDisplayHistoBlob()
538 mOldHistoBlobs.addBlob(type, blobId); in setDisplayHistoBlob()