# Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import("//test/xts/acts/graphic/vkgl/comm.gni") config("deqp_platform_ohos_config") { cflags_cc = deqp_common_cflags_cc cflags_cc += [ # "-Wno-conversion", # "-Wno-unused-function", "-Wno-unused-parameter", ] defines = deqp_common_defines } ohos_static_library("libdeqpgles31func0019") { subsystem_name = "graphic" part_name = "graphic_2d" sources = common_src sources += [ "../Deqpgles31BaseFunc.cpp" ] include_dirs = common_include deps = common_depends external_deps = [ "hilog:libhilog", "image_framework:image_native", ] configs = [ ":deqp_platform_ohos_config" ] } ohos_moduletest_suite("ActsDeqpgles31TestSuite0019") { subsystem_name = "graphic" part_name = "graphic_2d" sources = [ "../ActsDeqpgles310019TestSuite.cpp", "../functional/Deqpgles31callbacks_advanced_blendTestCase.cpp", "../functional/Deqpgles31callbacks_atomic_counterTestCase.cpp", "../functional/Deqpgles31callbacks_bufferTestCase.cpp", "../functional/Deqpgles31callbacks_computeTestCase.cpp", "../functional/Deqpgles31callbacks_fragmentTestCase.cpp", "../functional/Deqpgles31callbacks_framebuffer_fetchTestCase.cpp", "../functional/Deqpgles31callbacks_oes_sample_variablesTestCase.cpp", "../functional/Deqpgles31callbacks_preciseTestCase.cpp", "../functional/Deqpgles31callbacks_shaderTestCase.cpp", "../functional/Deqpgles31callbacks_shader_directiveTestCase.cpp", "../functional/Deqpgles31callbacks_shader_functionTestCase.cpp", "../functional/Deqpgles31callbacks_shader_image_atomicTestCase.cpp", "../functional/Deqpgles31callbacks_shader_image_exchangeTestCase.cpp", "../functional/Deqpgles31callbacks_shader_image_loadTestCase.cpp", "../functional/Deqpgles31callbacks_shader_image_storeTestCase.cpp", "../functional/Deqpgles31callbacks_shader_storageTestCase.cpp", "../functional/Deqpgles31callbacks_ssbo_blockTestCase.cpp", "../functional/Deqpgles31callbacks_stateTestCase.cpp", "../functional/Deqpgles31callbacks_tessellationTestCase.cpp", "../functional/Deqpgles31callbacks_textureTestCase.cpp", "../functional/Deqpgles31callbacks_vertex_arrayTestCase.cpp", "../functional/Deqpgles31debug_state_queryTestCase.cpp", "../functional/Deqpgles31log_bufferTestCase.cpp", "../functional/Deqpgles31log_textureTestCase.cpp", "../functional/Deqpgles31render_limitsTestCase.cpp", "../functional/Deqpgles31render_passthroughTestCase.cpp", "../functional/Deqpgles31render_scatterTestCase.cpp", "../functional/Deqpgles31tessellation_geometry_interaction_feedbackTestCase.cpp", "../functional/Deqpgles31tessellation_geometry_interaction_point_sizeTestCase.cpp", "../functional/Deqpgles31uniform_location_linkTestCase.cpp", "../functional/Deqpgles31uniform_location_min_maxTestCase.cpp", "../functional/Deqpgles31uniform_location_nested_arrayTestCase.cpp", "../functional/Deqpgles31uniform_location_nested_structTestCase.cpp", "../functional/Deqpgles31uniform_location_structTestCase.cpp", ] include_dirs = [ "../../../src" ] deps = [ ":libdeqpgles31func0019" ] cflags = [ "-Wno-error" ] }