Merge branch 'devel/graphics' into devel/master
[platform/core/uifw/dali-core.git] / dali / internal / event / rendering / shader-impl.h
index a736103..64008c5 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTERNAL_SHADER_H
 
 /*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  */
 
 // INTERNAL INCLUDES
-#include <dali/public-api/common/dali-common.h> // DALI_ASSERT_ALWAYS
-#include <dali/public-api/common/intrusive-ptr.h> // Dali::IntrusivePtr
-#include <dali/public-api/rendering/shader.h> // Dali::Shader
+#include <dali/internal/common/shader-data.h>            // ShaderPtr
 #include <dali/internal/event/common/object-connector.h> // Dali::Internal::ObjectConnector
-#include <dali/internal/event/common/object-impl.h> // Dali::Internal::Object
-#include <dali/internal/common/shader-data.h> // ShaderPtr
+#include <dali/internal/event/common/object-impl.h>      // Dali::Internal::Object
+#include <dali/public-api/common/dali-common.h>          // DALI_ASSERT_ALWAYS
+#include <dali/public-api/common/intrusive-ptr.h>        // Dali::IntrusivePtr
+#include <dali/public-api/rendering/shader.h>            // Dali::Shader
 
 namespace Dali
 {
@@ -36,7 +36,7 @@ class Shader;
 }
 
 class Shader;
-typedef IntrusivePtr<Shader> ShaderPtr;
+using ShaderPtr = IntrusivePtr<Shader>;
 
 /**
  * Shader is an object that contains an array of structures of values that
@@ -45,141 +45,83 @@ typedef IntrusivePtr<Shader> ShaderPtr;
 class Shader : public Object
 {
 public:
-
   /**
    * @copydoc Dali::Shader::New()
    */
-  static ShaderPtr New( const std::string& vertexShader,
-                        const std::string& fragmentShader,
-                        Dali::Shader::Hint::Value hints );
-
-  /**
-   * @brief Get the shader scene object
-   *
-   * @return the shader scene object
-   */
-  const SceneGraph::Shader* GetShaderSceneObject() const;
+  static ShaderPtr New(std::string_view          vertexShader,
+                       std::string_view          fragmentShader,
+                       Dali::Shader::Hint::Value hints);
 
   /**
    * Retrieve the scene-graph shader added by this object.
    * @return A pointer to the shader.
    */
-  SceneGraph::Shader* GetShaderSceneObject();
+  const SceneGraph::Shader& GetShaderSceneObject() const;
 
 public: // Default property extensions from Object
-
-  /**
-   * @copydoc Dali::Internal::Object::GetDefaultPropertyCount()
-   */
-  virtual unsigned int GetDefaultPropertyCount() const;
-
-  /**
-   * @copydoc Dali::Internal::Object::GetDefaultPropertyIndices()
-   */
-  virtual void GetDefaultPropertyIndices( Property::IndexContainer& indices ) const;
-
-  /**
-   * @copydoc Dali::Internal::Object::GetDefaultPropertyName()
-   */
-  virtual const char* GetDefaultPropertyName(Property::Index index) const;
-
-  /**
-   * @copydoc Dali::Internal::Object::GetDefaultPropertyIndex()
-   */
-  virtual Property::Index GetDefaultPropertyIndex(const std::string& name) const;
-
-  /**
-   * @copydoc Dali::Internal::Object::IsDefaultPropertyWritable()
-   */
-  virtual bool IsDefaultPropertyWritable(Property::Index index) const;
-
-  /**
-   * @copydoc Dali::Internal::Object::IsDefaultPropertyAnimatable()
-   */
-  virtual bool IsDefaultPropertyAnimatable(Property::Index index) const;
-
-  /**
-   * @copydoc Dali::Internal::Object::IsDefaultPropertyAConstraintInput()
-   */
-  virtual bool IsDefaultPropertyAConstraintInput( Property::Index index ) const;
-
-  /**
-   * @copydoc Dali::Internal::Object::GetDefaultPropertyType()
-   */
-  virtual Property::Type GetDefaultPropertyType(Property::Index index) const;
-
   /**
    * @copydoc Dali::Internal::Object::SetDefaultProperty()
    */
-  virtual void SetDefaultProperty(Property::Index index, const Property::Value& propertyValue);
-
-  /**
-   * @copydoc Dali::Internal::Object::SetSceneGraphProperty()
-   */
-  virtual void SetSceneGraphProperty( Property::Index index, const PropertyMetadata& entry, const Property::Value& value );
+  void SetDefaultProperty(Property::Index index, const Property::Value& propertyValue) override;
 
   /**
    * @copydoc Dali::Internal::Object::GetDefaultProperty()
    */
-  virtual Property::Value GetDefaultProperty( Property::Index index ) const;
+  Property::Value GetDefaultProperty(Property::Index index) const override;
 
   /**
    * @copydoc Dali::Internal::Object::GetDefaultPropertyCurrentValue()
    */
-  virtual Property::Value GetDefaultPropertyCurrentValue( Property::Index index ) const;
+  Property::Value GetDefaultPropertyCurrentValue(Property::Index index) const override;
 
+private: // implementation
   /**
-   * @copydoc Dali::Internal::Object::GetPropertyOwner()
+   * Constructor
+   *
+   * @param sceneObject the scene object
    */
-  virtual const SceneGraph::PropertyOwner* GetPropertyOwner() const;
+  Shader(const SceneGraph::Shader* sceneObject);
 
   /**
-   * @copydoc Dali::Internal::Object::GetSceneObject()
+   * Second stage initialization
    */
-  virtual const SceneGraph::PropertyOwner* GetSceneObject() const;
+  void SetShader(std::string_view vertexShader, std::string_view fragmentShader, Dali::Shader::Hint::Value hints);
 
+protected:
   /**
-   * @copydoc Dali::Internal::Object::GetSceneObjectAnimatableProperty()
+   * A reference counted object may only be deleted by calling Unreference()
    */
-  virtual const SceneGraph::PropertyBase* GetSceneObjectAnimatableProperty( Property::Index index ) const;
+  ~Shader() override;
 
-  /**
-   * @copydoc Dali::Internal::Object::GetSceneObjectInputProperty()
-   */
-  virtual const PropertyInputImpl* GetSceneObjectInputProperty( Property::Index index ) const;
+private: // unimplemented methods
+  Shader()              = delete;
+  Shader(const Shader&) = delete;
+  Shader& operator=(const Shader&) = delete;
 
+private:
+  Internal::ShaderDataPtr mShaderData;
+
+public:
   /**
-   * @copydoc Dali::Internal::Object::GetPropertyComponentIndex()
+   * @copydoc Dali::Shader::GetShaderVersionPrefix()
    */
-  virtual int GetPropertyComponentIndex( Property::Index index ) const;
-
-private: // implementation
-  Shader();
+  static std::string GetShaderVersionPrefix();
 
   /**
-   * Second stage initialization
+   * @copydoc Dali::Shader::GetVertexShaderPrefix()
    */
-  void Initialize( const std::string& vertexShader, const std::string& fragmentShader, Dali::Shader::Hint::Value hints );
+  static std::string GetVertexShaderPrefix();
 
-protected:
   /**
-   * A reference counted object may only be deleted by calling Unreference()
+   * @copydoc Dali::Shader::GetFragmentShaderPrefix()
    */
-  virtual ~Shader();
-
-private: // unimplemented methods
-  Shader( const Shader& );
-  Shader& operator=( const Shader& );
-
-private:
-  SceneGraph::Shader* mSceneObject;
-  Internal::ShaderDataPtr mShaderData;
+  static std::string GetFragmentShaderPrefix();
 };
 
 } // namespace Internal
 
 // Helpers for public-api forwarding methods
-inline Internal::Shader& GetImplementation( Dali::Shader& handle )
+inline Internal::Shader& GetImplementation(Dali::Shader& handle)
 {
   DALI_ASSERT_ALWAYS(handle && "Shader handle is empty");
 
@@ -188,7 +130,7 @@ inline Internal::Shader& GetImplementation( Dali::Shader& handle )
   return static_cast<Internal::Shader&>(object);
 }
 
-inline const Internal::Shader& GetImplementation( const Dali::Shader& handle )
+inline const Internal::Shader& GetImplementation(const Dali::Shader& handle)
 {
   DALI_ASSERT_ALWAYS(handle && "Shader handle is empty");