CreateWindow( positionSize );
}
- for( int i = 0; i < 4; ++i )
- {
- mAvaiableWindowOrientations[i] = 0;
- }
-
mWlSurface = ecore_wl_window_surface_create( mEcoreWindow );
SetTransparency( isTransparent );
void WindowBaseEcoreWl::SetAvailableOrientations( const std::vector< Dali::Window::WindowOrientation >& orientations )
{
- std::size_t size = orientations.size();
- for( std::size_t i = 0; i < size; ++i )
+ int rotations[4] = { 0 };
+ for( std::size_t i = 0; i < orientations.size(); ++i )
{
- mAvaiableWindowOrientations[i] = static_cast< int >( orientations[i] );
+ rotations[i] = static_cast< int >( orientations[i] );
}
- ecore_wl_window_rotation_available_rotations_set( mEcoreWindow, mAvaiableWindowOrientations, size );
+ ecore_wl_window_rotation_available_rotations_set( mEcoreWindow, rotations, orientations.size() );
}
void WindowBaseEcoreWl::SetPreferredOrientation( Dali::Window::WindowOrientation orientation )
int mWindowRotationAngle;
int mScreenRotationAngle;
int mSupportedPreProtation;
-
- int mAvaiableWindowOrientations[4];
#ifdef DALI_ELDBUS_AVAILABLE
Eldbus_Connection* mSystemConnection;
#endif // DALI_ELDBUS_AVAILABLE
CreateWindow( positionSize );
}
- for( int i = 0; i < 4; ++i )
- {
- mAvaiableWindowOrientations[i] = 0;
- }
-
mWlSurface = ecore_wl2_window_surface_get( mEcoreWindow );
SetTransparency( isTransparent );
void WindowBaseEcoreWl2::SetAvailableOrientations( const std::vector< Dali::Window::WindowOrientation >& orientations )
{
- std::size_t size = orientations.size();
- for( std::size_t i = 0; i < size; ++i )
+ int rotations[4] = { 0 };
+ for( std::size_t i = 0; i < orientations.size(); ++i )
{
- mAvaiableWindowOrientations[i] = static_cast< int >( orientations[i] );
+ rotations[i] = static_cast< int >( orientations[i] );
}
- ecore_wl2_window_available_rotations_set( mEcoreWindow, mAvaiableWindowOrientations, size );
+ ecore_wl2_window_available_rotations_set( mEcoreWindow, rotations, orientations.size() );
}
void WindowBaseEcoreWl2::SetPreferredOrientation( Dali::Window::WindowOrientation orientation )
int mWindowRotationAngle;
int mScreenRotationAngle;
int mSupportedPreProtation;
-
- int mAvaiableWindowOrientations[4];
#ifdef DALI_ELDBUS_AVAILABLE
Eldbus_Connection* mSystemConnection;
#endif // DALI_ELDBUS_AVAILABLE