[dali_2.3.21] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-graphics-buffer.h
1 #ifndef DALI_TEST_GRAPHICS_BUFFER_H
2 #define DALI_TEST_GRAPHICS_BUFFER_H
3
4 /*
5  * Copyright (c) 2023 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-buffer-create-info.h>
21 #include <dali/graphics-api/graphics-buffer.h>
22 #include <dali/graphics-api/graphics-types.h>
23
24 #include "test-gl-abstraction.h"
25 #include "test-trace-call-stack.h"
26
27 namespace Dali
28 {
29 class TestGraphicsProgram;
30 class TestGraphicsController;
31 class UniformBufferBindingDescriptor;
32
33 class TestGraphicsBuffer : public Graphics::Buffer
34 {
35 public:
36   TestGraphicsBuffer(const Graphics::BufferCreateInfo& createInfo, TestGraphicsController& controller, TestGlAbstraction& glAbstraction, TraceCallStack& callStack);
37   ~TestGraphicsBuffer();
38   void DiscardResource();
39
40   void   Bind();
41   void   Unbind();
42   void   Upload(uint32_t offset, uint32_t size);
43   GLenum GetTarget();
44
45   bool IsCPUAllocated() const
46   {
47     return mCpuOnly;
48   }
49
50   void BindAsUniformBuffer(const TestGraphicsProgram* program, const Dali::UniformBufferBindingDescriptor& uboBinding) const;
51
52   TraceCallStack&         mCallStack;
53   TestGraphicsController& mController;
54   TestGlAbstraction&      mGl;
55   std::vector<uint8_t>    memory;
56
57   Graphics::BufferCreateInfo mCreateInfo;
58   Graphics::BufferUsageFlags mUsage;
59   GLuint                     mId{0};
60   bool                       mCreated{false};
61   bool                       mCpuOnly{false};
62 };
63
64 } // namespace Dali
65
66 #endif //DALI_TEST_GRAPHICS_BUFFER_H