Home
last modified time | relevance | path

Searched refs:surfaceProperties (Results 1 – 6 of 6) sorted by relevance

/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/
Dcommon.cpp81 ilmSurfaceProperties surfaceProperties = pScene->surfaceProperties[surface]; in getSurfaceScreenCoordinates() local
83 surfaceCoordinates = getSurfaceScreenCoordinates(surfaceProperties, layerProperties); in getSurfaceScreenCoordinates()
88 ilmSurfaceProperties surfaceProperties = pScene->surfaceProperties[surface]; in getSurfaceScreenCoordinates() local
90 surfaceCoordinates.x = surfaceProperties.destX; in getSurfaceScreenCoordinates()
91 surfaceCoordinates.y = surfaceProperties.destY; in getSurfaceScreenCoordinates()
92 surfaceCoordinates.z = surfaceProperties.destX + surfaceProperties.destWidth; in getSurfaceScreenCoordinates()
93 surfaceCoordinates.w = surfaceProperties.destX + surfaceProperties.destHeight; in getSurfaceScreenCoordinates()
274 scene.surfaceProperties[surfaceId] = sp; in captureSceneData()
Danalyze.cpp62 ilmSurfaceProperties& targetSurfaceProperties = scene.surfaceProperties[targetSurfaceId]; in analyzeVisibilityAndOpacity()
139 ilmSurfaceProperties& targetSurfaceProperties = scene.surfaceProperties[targetSurfaceId]; in analyzeSurfaceDimensions()
355 …if (scene.layerProperties[surfaceLayer].visibility == ILM_FALSE || scene.surfaceProperties[surface… in analyzeOcclusion()
359 … if (scene.layerProperties[surfaceLayer].opacity * scene.surfaceProperties[surfaceId].opacity == 0) in analyzeOcclusion()
477 ilmSurfaceProperties& targetSurfaceProperties = scene.surfaceProperties[targetSurfaceId]; in analyzeFrameCounter()
Dsceneio.cpp44 ilmSurfaceProperties& props = pSceneData->surfaceProperties[surfaceId]; in captureSceneDataHelper()
/third_party/wayland-ivi-extension/ivi-layermanagement-api/test/
Dilm_control_test.cpp200 ilmSurfaceProperties surfaceProperties; in TEST_F() local
201 ASSERT_EQ(ILM_SUCCESS, ilm_getPropertiesOfSurface(surface, &surfaceProperties)); in TEST_F()
202 ASSERT_EQ(89u, surfaceProperties.sourceX); in TEST_F()
203 ASSERT_EQ(6538u, surfaceProperties.sourceY); in TEST_F()
204 ASSERT_EQ(638u, surfaceProperties.sourceWidth); in TEST_F()
205 ASSERT_EQ(4u, surfaceProperties.sourceHeight); in TEST_F()
468 ilmSurfaceProperties surfaceProperties; in TEST_F() local
469 ASSERT_EQ(ILM_SUCCESS, ilm_getPropertiesOfSurface(surface, &surfaceProperties)); in TEST_F()
470 ASSERT_NEAR(0.8765, surfaceProperties.opacity, 0.1); in TEST_F()
471 ASSERT_EQ(89u, surfaceProperties.sourceX); in TEST_F()
[all …]
Dilm_control_notification_test.cpp196 …allbackFunction(t_ilm_surface surface, struct ilmSurfaceProperties* surfaceProperties, t_ilm_notif… in SurfaceCallbackFunction() argument
202 SurfaceProperties.visibility = surfaceProperties->visibility; in SurfaceCallbackFunction()
207 SurfaceProperties.opacity = surfaceProperties->opacity; in SurfaceCallbackFunction()
212 SurfaceProperties.sourceX = surfaceProperties->sourceX; in SurfaceCallbackFunction()
213 SurfaceProperties.sourceY = surfaceProperties->sourceY; in SurfaceCallbackFunction()
214 SurfaceProperties.sourceWidth = surfaceProperties->sourceWidth; in SurfaceCallbackFunction()
215 SurfaceProperties.sourceHeight = surfaceProperties->sourceHeight; in SurfaceCallbackFunction()
220 SurfaceProperties.destX = surfaceProperties->destX; in SurfaceCallbackFunction()
221 SurfaceProperties.destY = surfaceProperties->destY; in SurfaceCallbackFunction()
222 SurfaceProperties.destWidth = surfaceProperties->destWidth; in SurfaceCallbackFunction()
[all …]
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/include/
DLMControl.h45 map<t_ilm_surface, ilmSurfaceProperties> surfaceProperties; member