Test harness for UBO
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-graphics-reflection.h
1 #ifndef DALI_TEST_GRAPHICS_REFLECTION_H
2 #define DALI_TEST_GRAPHICS_REFLECTION_H
3
4 /*
5  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #include <dali/graphics-api/graphics-reflection.h>
21 #include <dali/graphics-api/graphics-program-create-info.h>
22 #include "test-gl-abstraction.h"
23
24 namespace Dali
25 {
26
27 class TestGraphicsReflection : public Graphics::Reflection
28 {
29 public:
30   TestGraphicsReflection(TestGlAbstraction& gl, Property::Array& vertexFormats, const Graphics::ProgramCreateInfo& createInfo, std::vector<UniformData>& customUniforms);
31
32   uint32_t                                   GetVertexAttributeLocation(const std::string& name) const override;
33   Dali::Graphics::VertexInputAttributeFormat GetVertexAttributeFormat(uint32_t location) const override;
34   std::string                                GetVertexAttributeName(uint32_t location) const override;
35   std::vector<uint32_t>                      GetVertexAttributeLocations() const override;
36   uint32_t                                   GetUniformBlockCount() const override;
37   uint32_t                                   GetUniformBlockBinding(uint32_t index) const override;
38   uint32_t                                   GetUniformBlockSize(uint32_t index) const override;
39   bool                                       GetUniformBlock(uint32_t index, Dali::Graphics::UniformBlockInfo& out) const override;
40   std::vector<uint32_t>                      GetUniformBlockLocations() const override;
41   std::string                                GetUniformBlockName(uint32_t blockIndex) const override;
42   uint32_t                                   GetUniformBlockMemberCount(uint32_t blockIndex) const override;
43   std::string                                GetUniformBlockMemberName(uint32_t blockIndex, uint32_t memberLocation) const override;
44   uint32_t                                   GetUniformBlockMemberOffset(uint32_t blockIndex, uint32_t memberLocation) const override;
45   bool                                       GetNamedUniform(const std::string& name, Dali::Graphics::UniformInfo& out) const override;
46   std::vector<Dali::Graphics::UniformInfo>   GetSamplers() const override;
47   Graphics::ShaderLanguage                   GetLanguage() const override;
48
49 public: // Test methods
50   void SetAttributes(std::vector<std::string> locations)
51   {
52     mAttributes.clear();
53     mAttributes.resize(locations.size());
54     for(auto& location : locations)
55     {
56       mAttributes.push_back(location);
57     }
58   }
59
60   Dali::Property::Type GetMemberType( int blockIndex, int location) const;
61
62   TestGlAbstraction&               mGl;
63   mutable std::vector<std::string> mAttributes;
64   std::vector<UniformData>         mCustomUniforms;
65
66   Graphics::UniformBlockInfo              mDefaultUniformBlock{};       ///< The emulated UBO containing all the standalone uniforms
67   std::vector<Graphics::UniformBlockInfo> mUniformBlocks{};             ///< List of uniform blocks
68 };
69
70 } // namespace Dali
71
72 #endif //DALI_TEST_GRAPHICS_REFLECTION_H