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_041718, 27 "dEQP-GLES3.functional.transform_feedback.int", 28 "erpolation.centroid.lowp_vec4_points_separate"); 29 30static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041719, 31 "dEQP-GLES3.functional.transform_feedback.inter", 32 "polation.centroid.lowp_vec4_points_interleaved"); 33 34static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041720, 35 "dEQP-GLES3.functional.transform_feedback.int", 36 "erpolation.centroid.lowp_vec4_lines_separate"); 37 38static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041721, 39 "dEQP-GLES3.functional.transform_feedback.inte", 40 "rpolation.centroid.lowp_vec4_lines_interleaved"); 41 42static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041722, 43 "dEQP-GLES3.functional.transform_feedback.inter", 44 "polation.centroid.lowp_vec4_triangles_separate"); 45 46static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041723, 47 "dEQP-GLES3.functional.transform_feedback.interp", 48 "olation.centroid.lowp_vec4_triangles_interleaved"); 49 50static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041724, 51 "dEQP-GLES3.functional.transform_feedback.inter", 52 "polation.centroid.mediump_vec4_points_separate"); 53 54static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041725, 55 "dEQP-GLES3.functional.transform_feedback.interp", 56 "olation.centroid.mediump_vec4_points_interleaved"); 57 58static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041726, 59 "dEQP-GLES3.functional.transform_feedback.inte", 60 "rpolation.centroid.mediump_vec4_lines_separate"); 61 62static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041727, 63 "dEQP-GLES3.functional.transform_feedback.interp", 64 "olation.centroid.mediump_vec4_lines_interleaved"); 65 66static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041728, 67 "dEQP-GLES3.functional.transform_feedback.interp", 68 "olation.centroid.mediump_vec4_triangles_separate"); 69 70static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041729, 71 "dEQP-GLES3.functional.transform_feedback.interpol", 72 "ation.centroid.mediump_vec4_triangles_interleaved"); 73 74static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041730, 75 "dEQP-GLES3.functional.transform_feedback.inte", 76 "rpolation.centroid.highp_vec4_points_separate"); 77 78static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041731, 79 "dEQP-GLES3.functional.transform_feedback.inter", 80 "polation.centroid.highp_vec4_points_interleaved"); 81 82static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041732, 83 "dEQP-GLES3.functional.transform_feedback.int", 84 "erpolation.centroid.highp_vec4_lines_separate"); 85 86static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041733, 87 "dEQP-GLES3.functional.transform_feedback.inter", 88 "polation.centroid.highp_vec4_lines_interleaved"); 89 90static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041734, 91 "dEQP-GLES3.functional.transform_feedback.inter", 92 "polation.centroid.highp_vec4_triangles_separate"); 93 94static SHRINK_HWTEST_F(ActsDeqpgles30042TestSuite, TestCase_041735, 95 "dEQP-GLES3.functional.transform_feedback.interpo", 96 "lation.centroid.highp_vec4_triangles_interleaved"); 97