X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Frender-tasks%2Fscene-graph-camera.h;h=d17120f60de78a931a43f01702ccc434c087c99f;hb=0402da83563e99cc67fd3c77a3b52831aa94fce6;hp=2cea7f6b37c9dca5aea2413844f964d3d6e02377;hpb=9697546f6395000a500259997c415d9ff3c2e337;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/render-tasks/scene-graph-camera.h b/dali/internal/update/render-tasks/scene-graph-camera.h index 2cea7f6..d17120f 100644 --- a/dali/internal/update/render-tasks/scene-graph-camera.h +++ b/dali/internal/update/render-tasks/scene-graph-camera.h @@ -124,11 +124,6 @@ public: */ void SetAspectRatio( float aspectRatio ); - /** - * @copydoc Dali::Internal::CameraActor::SetStereoBias - */ - void SetStereoBias(const Vector2& stereoBias); - /** * @copydoc Dali::Internal::CameraActor::SetLeftClippingPlane */ @@ -287,7 +282,6 @@ public: // PROPERTIES float mBottomClippingPlane; float mNearClippingPlane; float mFarClippingPlane; - Vector2 mStereoBias; Vector3 mTargetPosition; InheritedMatrix mViewMatrix; ///< The viewMatrix; this is double buffered for input handling. @@ -344,17 +338,6 @@ inline void SetAspectRatioMessage( EventThreadServices& eventThreadServices, con new (slot) LocalType( &camera, &Camera::SetAspectRatio, parameter ); } -inline void SetStereoBiasMessage( EventThreadServices& eventThreadServices, const Camera& camera, const Vector2& parameter ) -{ - typedef MessageValue1< Camera, Vector2 > LocalType; - - // Reserve some memory inside the message queue - uint32_t* slot = eventThreadServices.ReserveMessageSlot( sizeof( LocalType ) ); - - // Construct message in the message queue memory; note that delete should not be called on the return value - new (slot) LocalType( &camera, &Camera::SetStereoBias, parameter ); -} - inline void SetLeftClippingPlaneMessage( EventThreadServices& eventThreadServices, const Camera& camera, float parameter ) { typedef MessageValue1< Camera, float > LocalType;