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/gallium/drivers/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/gallium/drivers/panfrost/meson.build')
-rw-r--r-- | src/gallium/drivers/panfrost/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/panfrost/meson.build b/src/gallium/drivers/panfrost/meson.build index 39f1fd8e6b0..94b89098bc8 100644 --- a/src/gallium/drivers/panfrost/meson.build +++ b/src/gallium/drivers/panfrost/meson.build @@ -63,7 +63,7 @@ files_panfrost = files( 'pan_tiler.c', ) -inc_panfrost = [ +panfrost_includes = [ inc_common, inc_gallium, inc_gallium_aux, @@ -99,7 +99,7 @@ libpanfrost = static_library( dep_libdrm, idep_nir ], - include_directories : inc_panfrost, + include_directories : panfrost_includes, c_args : [c_vis_args, c_msvc_compat_args, compile_args_panfrost], ) @@ -151,7 +151,7 @@ files_pandecode = files( pandecode = executable( 'pandecode', files_pandecode, - include_directories : inc_panfrost, + include_directories : panfrost_includes, dependencies : [ dep_thread, ], |