Searched refs:compType (Results 1 - 9 of 9) sorted by relevance
/drivers/peripheral/display/composer/vdi_base/src/ |
H A D | hdi_gfx_composition.cpp | 209 CompositionType compType = layer->GetCompositionType(); in Apply() local 210 switch (compType) { in Apply() 222 DISPLAY_LOGE("the gfx composition can not surpport the type %{public}d", compType); in Apply()
|
/drivers/peripheral/display/hal/default_standard/src/display_device/composer/ |
H A D | hdi_gfx_composition.cpp | 186 CompositionType compType = layer->GetDeviceSelect();
in Apply() local 187 switch (compType) {
in Apply() 199 DISPLAY_LOGE("the gfx composition can not surpport the type %{public}d", compType);
in Apply()
|
/drivers/peripheral/display/interfaces/include/ |
H A D | display_layer.h | 420 * @param compType Specifies whether to enable the compression feature. The value <b>true>/b> means to enable 429 int32_t (*SetLayerCompression)(uint32_t devId, uint32_t layerId, int32_t compType); 438 * @param compType Indicates the pointer to the variable specifying whether the compression feature is enabled. 446 int32_t (*GetLayerCompression)(uint32_t devId, uint32_t layerId, int32_t *compType);
|
/drivers/peripheral/display/hdi_service/device/src/server/ |
H A D | display_device_service.cpp | 278 int32_t DisplayDeviceService::SetLayerCompression(uint32_t devId, uint32_t layerId, int32_t compType) in SetLayerCompression() argument 280 return displayLayer_->SetLayerCompression(devId, layerId, compType); in SetLayerCompression() 283 int32_t DisplayDeviceService::GetLayerCompression(uint32_t devId, uint32_t layerId, int32_t &compType) in GetLayerCompression() argument 285 return displayLayer_->GetLayerCompression(devId, layerId, &compType); in GetLayerCompression()
|
H A D | display_device_host_driver.cpp | 1461 int32_t compType = 0; in SetLayerCompression() local 1462 if (!data->ReadInt32(compType)) { in SetLayerCompression() 1463 DISPLAY_LOG("read compType from data failed!"); in SetLayerCompression() 1466 int32_t ret = device_->SetLayerCompression(devId, layerId, compType); in SetLayerCompression() 1490 int32_t compType = 0; in GetLayerCompression() local 1491 int32_t ret = device_->GetLayerCompression(devId, layerId, compType); in GetLayerCompression() 1496 if (!reply->WriteInt32(compType)) { in GetLayerCompression() 1497 DISPLAY_LOG("error: server compType ret into data failed"); in GetLayerCompression()
|
/drivers/peripheral/display/hdi_service/device/include/interfaces/ |
H A D | idisplay_device.h | 90 virtual int32_t SetLayerCompression(uint32_t devId, uint32_t layerId, int32_t compType) = 0;
91 virtual int32_t GetLayerCompression(uint32_t devId, uint32_t layerId, int32_t &compType) = 0;
|
/drivers/peripheral/display/hdi_service/device/include/proxy/ |
H A D | display_device_proxy.h | 84 int32_t SetLayerCompression(uint32_t devId, uint32_t layerId, int32_t compType) override; 85 int32_t GetLayerCompression(uint32_t devId, uint32_t layerId, int32_t &compType) override;
|
/drivers/peripheral/display/hdi_service/device/include/server/ |
H A D | display_device_service.h | 80 int32_t SetLayerCompression(uint32_t devId, uint32_t layerId, int32_t compType) override; 81 int32_t GetLayerCompression(uint32_t devId, uint32_t layerId, int32_t &compType) override;
|
/drivers/peripheral/display/hdi_service/device/src/proxy/display_device_proxy/ |
H A D | display_device_proxy.cpp | 1580 int32_t DisplayDeviceProxy::SetLayerCompression(uint32_t devId, uint32_t layerId, int32_t compType) in SetLayerCompression() argument 1598 if (!data.WriteInt32(compType)) { in SetLayerCompression() 1599 DISPLAY_LOG("error: write compType into data failed"); in SetLayerCompression() 1611 int32_t DisplayDeviceProxy::GetLayerCompression(uint32_t devId, uint32_t layerId, int32_t &compType) in GetLayerCompression() argument 1634 compType = reply.ReadInt32(); in GetLayerCompression()
|
Completed in 10 milliseconds