diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-06-18 11:16:21 -0700 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-06-20 08:06:35 -0700 |
commit | 413242277a2653d12d5ea8d8acba533530281fd6 (patch) | |
tree | 27664d6ff523a7786d2ebab90efc036f5266dd7c /src/panfrost/meson.build | |
parent | c57b4c86c07adce6738c01fae5906f4a4a46d93f (diff) |
lima,panfrost: Move lima_tiling.c/h to /src/panfrost
This will allow both drivers to share this code. Both drivers
build-tested with meson. Android build not tested.
v2: Change naming from tiling->shared, in case Lima and Panfrost can
share more in the future. Fix Android build system.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Reviewed-and-tested-by: Qiang Yu <[email protected]>
Diffstat (limited to 'src/panfrost/meson.build')
-rw-r--r-- | src/panfrost/meson.build | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/panfrost/meson.build b/src/panfrost/meson.build new file mode 100644 index 00000000000..6b167d04b9c --- /dev/null +++ b/src/panfrost/meson.build @@ -0,0 +1,24 @@ +# Copyright © 2018 Rob Clark +# Copyright © 2019 Collabora + +# 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. + +inc_panfrost = include_directories(['.', 'shared']) + +subdir('shared') |