Home
last modified time | relevance | path

Searched refs:layerInfo (Results 1 - 25 of 26) sorted by relevance

12

/drivers/peripheral/display/hal/default_standard/src/display_layer_video/
H A Ddisplay_layer_video.cpp50 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument
53 DISPLAY_CHK_RETURN((layerInfo == nullptr), DISPLAY_NULL_PTR, DISPLAY_LOGE("layerInfo is nullptr")); in CreateLayer()
55 LayerInfo info = *layerInfo; in CreateLayer()
/drivers/peripheral/display/composer/test/fuzztest/layer_fuzzer/
H A Dlayer_fuzzer.cpp56 static int32_t GetLayerInfo(LayerInfo& layerInfo) in GetLayerInfo() argument
69 layerInfo.width = GetData<uint32_t>() % WIDTH; in GetLayerInfo()
70 layerInfo.height = GetData<uint32_t>() % HEIGHT; in GetLayerInfo()
71 layerInfo.type = CONVERT_TABLE_LAYER_TYPE[GetData<uint32_t>() % lenLayerType]; in GetLayerInfo()
72 layerInfo.bpp = GetData<uint32_t>(); in GetLayerInfo()
73 layerInfo.pixFormat = CONVERT_TABLE_FORMAT[GetData<uint32_t>() % lenFormat]; in GetLayerInfo()
137 LayerInfo layerInfo; in UsingCreateLayer() local
138 int32_t ret = GetLayerInfo(layerInfo); in UsingCreateLayer()
145 ret = g_composerInterface->CreateLayer(devId, layerInfo, bufferCount, layerId); in UsingCreateLayer()
/drivers/peripheral/display/composer/vdi_base/src/
H A Dhdi_display.cpp89 int32_t HdiDisplay::CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument
93 DISPLAY_CHK_RETURN((layerInfo == nullptr), DISPLAY_PARAM_ERR, DISPLAY_LOGE("LayerInfo is null")); in CreateLayer()
95 auto layer = CreateHdiLayer(layerInfo->type); in CreateLayer()
H A Ddisplay_composer_vdi_impl.cpp213 int32_t DisplayComposerVdiImpl::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) in CreateLayer() argument
215 int32_t ec = HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, &layerInfo, &layerId); in CreateLayer()
H A Dhdi_session.cpp256 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument
260 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, layerInfo, layerId); in CreateLayer()
/drivers/peripheral/display/hal/default_standard/src/display_device/core/
H A Dhdi_display.cpp90 int32_t HdiDisplay::CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument
94 DISPLAY_CHK_RETURN((layerInfo == nullptr), DISPLAY_PARAM_ERR, DISPLAY_LOGE("LayerInfo is null")); in CreateLayer()
96 auto layer = CreateHdiLayer(layerInfo->type); in CreateLayer()
H A Dhdi_display.h86 virtual int32_t CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId);
H A Dhdi_session.cpp232 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument
236 return HdiSession::GetInstance().CallDisplayFunction(devId, &HdiDisplay::CreateLayer, layerInfo, layerId); in CreateLayer()
/drivers/peripheral/display/hal/default_standard/src/display_device/composer/
H A Dhdi_video_composition.cpp55 LayerInfo layerInfo = { rect.w, rect.h, LAYER_TYPE_OVERLAY, 8, PIXEL_FMT_YCRCB_420_P }; // the bpp of yuv is 8 in CreateVideoLayerForHdiLayer() local
56 int ret = layerFuncs_->CreateLayer(0, &layerInfo, &voLayerId); in CreateVideoLayerForHdiLayer()
/drivers/peripheral/display/composer/test/benchmark/
H A Ddisplay_benchmark_test.cpp226 LayerInfo layerInfo; in BENCHMARK_F() local
230 ret = g_composerDevice->CreateLayer(g_displayIds[0], layerInfo, bufferCount, layerId); in BENCHMARK_F()
456 LayerInfo layerInfo; in BENCHMARK_F() local
461 ret = g_composerDevice->CreateLayer(g_displayIds[0], layerInfo, bufferCount, layerId); in BENCHMARK_F()
/drivers/peripheral/display/composer/vdi_base/include/
H A Dhdi_display.h91 virtual int32_t CreateLayer(const LayerInfo *layerInfo, uint32_t *layerId);
H A Ddisplay_composer_vdi_impl.h58 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) override;
/drivers/peripheral/display/hal/default/
H A Ddisplay_layer.c272 static int32_t CreateLayer(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId) in CreateLayer() argument
274 if (layerInfo == NULL || layerId == NULL) { in CreateLayer()
290 priv->pitch = layerInfo->width * BITS_PER_PIXEL / BITS_TO_BYTE; in CreateLayer()
/drivers/peripheral/display/composer/hdi_service/include/
H A Ddisplay_composer_service.h62 int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, uint32_t& layerId) override;
H A Didisplay_composer_vdi.h65 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) = 0;
/drivers/peripheral/display/hal/default_standard/src/display_device/
H A Ddisplay_composer_vdi_impl.h58 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) override;
H A Ddisplay_composer_vdi_impl.cpp227 int32_t DisplayComposerVdiImpl::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t& layerId) in CreateLayer() argument
230 int32_t ec = composerModel_->CallDisplayFunction(devId, &HdiDisplay::CreateLayer, &layerInfo, &layerId); in CreateLayer()
/drivers/peripheral/display/interfaces/include/
H A Ddisplay_layer.h100 * @param layerInfo Indicates the pointer to the layer information passed to open a layer, including the layer
112 int32_t (*CreateLayer)(uint32_t devId, const LayerInfo *layerInfo, uint32_t *layerId);
/drivers/peripheral/display/hdi_service/device/src/server/
H A Ddisplay_device_service.cpp208 int32_t DisplayDeviceService::CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) in CreateLayer() argument
210 return displayLayer_->CreateLayer(devId, &layerInfo, &layerId); in CreateLayer()
/drivers/interface/display/composer/v1_0/hdi_impl/
H A Ddisplay_composer_hdi_impl.h344 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount,
348 return ToDispErrCode(hdi_->CreateLayer(devId, layerInfo, cacheCount, layerId));
/drivers/interface/display/composer/v1_0/include/
H A Didisplay_composer_interface.h532 * @param layerInfo Indicates the pointer to the layer information passed to open a layer, including the layer
544 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, uint32_t& layerId) = 0;
/drivers/peripheral/display/hdi_service/device/include/interfaces/
H A Didisplay_device.h76 virtual int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) = 0;
/drivers/peripheral/display/hdi_service/device/include/proxy/
H A Ddisplay_device_proxy.h70 int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) override;
/drivers/peripheral/display/hdi_service/device/include/server/
H A Ddisplay_device_service.h66 int32_t CreateLayer(uint32_t devId, const LayerInfo &layerInfo, uint32_t &layerId) override;
/drivers/peripheral/display/composer/hdi_service/src/
H A Ddisplay_composer_service.cpp497 int32_t DisplayComposerService::CreateLayer(uint32_t devId, const LayerInfo& layerInfo, uint32_t cacheCount, in CreateLayer() argument
503 int32_t ret = vdiImpl_->CreateLayer(devId, layerInfo, layerId); in CreateLayer()

Completed in 17 milliseconds

12