diff options
author | Dylan Baker <[email protected]> | 2017-10-03 17:06:22 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-09 13:42:44 -0700 |
commit | c2cd5801cd1f05f8833a4c1c097b07757f763794 (patch) | |
tree | 1de4cd5831a3ff092511c30e11ff85d7bf1279c5 /src/mesa | |
parent | 816bf7d1644b9b14df253c5d54f595514aa34703 (diff) |
meson: build classic swrast
This adds support for building the classic swrast implementation. This
driver has been tested with glxinfo and glxgears.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/meson.build | 3 | ||||
-rw-r--r-- | src/mesa/drivers/dri/swrast/meson.build | 30 |
2 files changed, 33 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/meson.build b/src/mesa/drivers/dri/meson.build index 9e0e9638aa4..cc2272eff6d 100644 --- a/src/mesa/drivers/dri/meson.build +++ b/src/mesa/drivers/dri/meson.build @@ -22,6 +22,9 @@ subdir('common') dri_drivers = [] dri_link = [] +if with_dri_swrast + subdir('swrast') +endif if with_dri_i965 subdir('i965') endif diff --git a/src/mesa/drivers/dri/swrast/meson.build b/src/mesa/drivers/dri/swrast/meson.build new file mode 100644 index 00000000000..5ceb1e33e3e --- /dev/null +++ b/src/mesa/drivers/dri/swrast/meson.build @@ -0,0 +1,30 @@ +# Copyright © 2017 Intel Corporation + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +libswrast_dri = static_library( + 'swrast_dri', + files('swrast.c', 'swrast_priv.h'), + c_args : [c_vis_args], + include_directories : [inc_common, inc_dri_common], + dependencies : dep_libdrm, +) + +dri_drivers += libswrast_dri +dri_link += 'swrast_dri.so' |