const std::string& name,
bool isTransparent)
: EcoreWlRenderSurface( positionSize, surface, name, isTransparent ),
+ mWlWindow( NULL ),
mEglWindow( NULL )
{
DALI_LOG_INFO( gRenderSurfaceLogFilter, Debug::Verbose, "Creating Window\n" );
Indicator::Indicator( Adaptor* adaptor, Dali::Window::WindowOrientation orientation, IndicatorInterface::Observer* observer )
: mPixmap( 0 ),
+ mGestureDeltaY( 0.0f ),
mGestureDetected( false ),
mConnection( this ),
mOpacityMode( Dali::Window::OPAQUE ),
mTbmFormat( isTransparent ? TBM_FORMAT_ARGB8888 : TBM_FORMAT_RGB888 ),
mOwnSurface( false ),
mDrawableCompleted( false ),
+ mTbmQueue( NULL ),
mConsumeSurface( NULL ),
mThreadSynchronization( NULL )
{
mDragAndDropDetector( dndDetector ),
mClipboardEventNotifier( ClipboardEventNotifier::Get() ),
mClipboard( Dali::Clipboard::Get()),
- mImpl( NULL )
+ mImpl( NULL ),
+ mPaused( false )
{
const std::string& name,
bool isTransparent)
: mRenderNotification(NULL),
- mColorDepth(isTransparent ? COLOR_DEPTH_32 : COLOR_DEPTH_24)
+ mColorDepth(isTransparent ? COLOR_DEPTH_32 : COLOR_DEPTH_24),
+ mEglWindow(NULL)
{
mWindow.mPosition = positionSize;
mWindow.mTitle = name;
mNextIndicatorOrientation(Dali::Window::PORTRAIT),
mIndicatorOpacityMode(Dali::Window::OPAQUE),
mOverlay(NULL),
- mAdaptor(NULL)
+ mAdaptor(NULL),
+ mPreferredOrientation(Dali::Window::PORTRAIT)
{
mEventHandler = NULL;
}
TizenVideoPlayer::TizenVideoPlayer()
: mPlayer( NULL ),
mPlayerState( PLAYER_STATE_NONE ),
+ mTbmSurface( NULL ),
mPacket( NULL ),
mBackgroundColor( Dali::Stage::DEFAULT_BACKGROUND_COLOR ),
mTargetType( NativeImage )