Path: blob/21.2-virgl/src/gallium/drivers/softpipe/meson.build
4570 views
# Copyright © 2017 Intel Corporation12# Permission is hereby granted, free of charge, to any person obtaining a copy3# of this software and associated documentation files (the "Software"), to deal4# in the Software without restriction, including without limitation the rights5# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell6# copies of the Software, and to permit persons to whom the Software is7# furnished to do so, subject to the following conditions:89# The above copyright notice and this permission notice shall be included in10# all copies or substantial portions of the Software.1112# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR13# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,14# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE15# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER16# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,17# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE18# SOFTWARE.1920files_softpipe = files(21'sp_buffer.c',22'sp_buffer.h',23'sp_clear.c',24'sp_clear.h',25'sp_context.c',26'sp_context.h',27'sp_compute.c',28'sp_draw_arrays.c',29'sp_fence.c',30'sp_fence.h',31'sp_flush.c',32'sp_flush.h',33'sp_fs_exec.c',34'sp_fs.h',35'sp_image.c',36'sp_image.h',37'sp_limits.h',38'sp_prim_vbuf.c',39'sp_prim_vbuf.h',40'sp_public.h',41'sp_quad_blend.c',42'sp_quad_depth_test.c',43'sp_quad_depth_test_tmp.h',44'sp_quad_fs.c',45'sp_quad.h',46'sp_quad_pipe.c',47'sp_quad_pipe.h',48'sp_quad_stipple.c',49'sp_query.c',50'sp_query.h',51'sp_screen.c',52'sp_screen.h',53'sp_setup.c',54'sp_setup.h',55'sp_state_blend.c',56'sp_state_clip.c',57'sp_state_derived.c',58'sp_state_image.c',59'sp_state.h',60'sp_state_rasterizer.c',61'sp_state_sampler.c',62'sp_state_shader.c',63'sp_state_so.c',64'sp_state_surface.c',65'sp_state_vertex.c',66'sp_surface.c',67'sp_surface.h',68'sp_tex_sample.c',69'sp_tex_sample.h',70'sp_tex_tile_cache.c',71'sp_tex_tile_cache.h',72'sp_texture.c',73'sp_texture.h',74'sp_tile_cache.c',75'sp_tile_cache.h',76)7778libsoftpipe = static_library(79'softpipe',80files_softpipe,81include_directories : [inc_gallium_aux, inc_gallium, inc_include, inc_src],82c_args : [c_msvc_compat_args],83gnu_symbol_visibility : 'hidden',84dependencies : idep_nir,85)8687driver_swrast = declare_dependency(88compile_args : '-DGALLIUM_SOFTPIPE',89link_with : libsoftpipe90)919293