Merge "Add parameter (bool immediate) to TextChanged signal in interface" into devel...
[platform/core/uifw/dali-toolkit.git] / automated-tests / src / dali-toolkit / dali-toolkit-test-utils / test-graphics-pipeline.cpp
1 /*
2  * Copyright (c) 2021 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "test-graphics-pipeline.h"
18
19 namespace Dali
20 {
21 TestGraphicsPipeline::TestGraphicsPipeline(TestGlAbstraction& gl, const Graphics::PipelineCreateInfo& createInfo)
22 : mGl(gl)
23 {
24   // Need to deep copy, otherwise pointed at memory will go out of scope. Probably should do something about this.
25
26   if(createInfo.colorBlendState)
27     colorBlendState = *createInfo.colorBlendState;
28
29   if(createInfo.programState)
30     programState = *createInfo.programState;
31
32   if(createInfo.viewportState)
33     viewportState = *createInfo.viewportState;
34
35   if(createInfo.framebufferState)
36     framebufferState = *createInfo.framebufferState;
37
38   if(createInfo.depthStencilState)
39     depthStencilState = *createInfo.depthStencilState;
40
41   if(createInfo.rasterizationState)
42     rasterizationState = *createInfo.rasterizationState;
43
44   if(createInfo.vertexInputState)
45     vertexInputState = *createInfo.vertexInputState;
46
47   if(createInfo.inputAssemblyState)
48     inputAssemblyState = *createInfo.inputAssemblyState;
49
50   if(createInfo.dynamicStateMask)
51     dynamicStateMask = createInfo.dynamicStateMask;
52 }
53
54 } // namespace Dali