1/* 2 * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16#include <climits> 17#include <gtest/gtest.h> 18#include "../Deqpgles3BaseFunc.h" 19#include "../ActsDeqpgles30042TestSuite.h" 20#include "shrinkdefine.h" 21 22using namespace std; 23using namespace testing::ext; 24using namespace OHOS; 25 26static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041682, 27 "dEQP-GLES3.functional.transform_feedback.in", 28 "terpolation.smooth.lowp_vec4_points_separate"); 29 30static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041683, 31 "dEQP-GLES3.functional.transform_feedback.inte", 32 "rpolation.smooth.lowp_vec4_points_interleaved"); 33 34static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041684, 35 "dEQP-GLES3.functional.transform_feedback.in", 36 "terpolation.smooth.lowp_vec4_lines_separate"); 37 38static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041685, 39 "dEQP-GLES3.functional.transform_feedback.int", 40 "erpolation.smooth.lowp_vec4_lines_interleaved"); 41 42static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041686, 43 "dEQP-GLES3.functional.transform_feedback.inte", 44 "rpolation.smooth.lowp_vec4_triangles_separate"); 45 46static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041687, 47 "dEQP-GLES3.functional.transform_feedback.inter", 48 "polation.smooth.lowp_vec4_triangles_interleaved"); 49 50static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041688, 51 "dEQP-GLES3.functional.transform_feedback.inte", 52 "rpolation.smooth.mediump_vec4_points_separate"); 53 54static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041689, 55 "dEQP-GLES3.functional.transform_feedback.inter", 56 "polation.smooth.mediump_vec4_points_interleaved"); 57 58static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041690, 59 "dEQP-GLES3.functional.transform_feedback.int", 60 "erpolation.smooth.mediump_vec4_lines_separate"); 61 62static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041691, 63 "dEQP-GLES3.functional.transform_feedback.inter", 64 "polation.smooth.mediump_vec4_lines_interleaved"); 65 66static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041692, 67 "dEQP-GLES3.functional.transform_feedback.inter", 68 "polation.smooth.mediump_vec4_triangles_separate"); 69 70static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041693, 71 "dEQP-GLES3.functional.transform_feedback.interpo", 72 "lation.smooth.mediump_vec4_triangles_interleaved"); 73 74static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041694, 75 "dEQP-GLES3.functional.transform_feedback.int", 76 "erpolation.smooth.highp_vec4_points_separate"); 77 78static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041695, 79 "dEQP-GLES3.functional.transform_feedback.inte", 80 "rpolation.smooth.highp_vec4_points_interleaved"); 81 82static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041696, 83 "dEQP-GLES3.functional.transform_feedback.in", 84 "terpolation.smooth.highp_vec4_lines_separate"); 85 86static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041697, 87 "dEQP-GLES3.functional.transform_feedback.inte", 88 "rpolation.smooth.highp_vec4_lines_interleaved"); 89 90static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041698, 91 "dEQP-GLES3.functional.transform_feedback.inte", 92 "rpolation.smooth.highp_vec4_triangles_separate"); 93 94static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041699, 95 "dEQP-GLES3.functional.transform_feedback.interp", 96 "olation.smooth.highp_vec4_triangles_interleaved"); 97