diff options
author | Alexandros Frantzis <[email protected]> | 2019-06-12 10:29:32 +0300 |
---|---|---|
committer | Alexandros Frantzis <[email protected]> | 2019-06-14 12:58:51 +0300 |
commit | b18f09a5097cab393215668a129553adbf13a13f (patch) | |
tree | 3a8f603b2fafd9a216fdd49a9318eb07276f2adc /src/gallium/winsys/virgl/common/meson.build | |
parent | 8ead5bebdb5cedc5250116403166279b1b292a85 (diff) |
virgl: Introduce virgl_resource_cache
Introduce a resource cache implementation that can be used by any virgl
winsys backend.
Signed-off-by: Alexandros Frantzis <[email protected]>
Reviewed-by: Chia-I Wu <[email protected]>
Diffstat (limited to 'src/gallium/winsys/virgl/common/meson.build')
-rw-r--r-- | src/gallium/winsys/virgl/common/meson.build | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gallium/winsys/virgl/common/meson.build b/src/gallium/winsys/virgl/common/meson.build new file mode 100644 index 00000000000..9182b79a675 --- /dev/null +++ b/src/gallium/winsys/virgl/common/meson.build @@ -0,0 +1,31 @@ +# Copyright © 2019 Collabora Ltd + +# 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. + +libvirglcommon = static_library( + 'virglcommon', + 'virgl_resource_cache.c', + c_args : c_vis_args, + include_directories : [inc_common, inc_gallium_drivers], +) + +dep_libvirglcommon = declare_dependency( + link_with : libvirglcommon, + include_directories : include_directories('.'), +) |