diff --git a/src/freedreno/vulkan/meson.build b/src/freedreno/vulkan/meson.build index 0d7d3f5d7da..c62ba5d4004 100644 --- a/src/freedreno/vulkan/meson.build +++ b/src/freedreno/vulkan/meson.build @@ -47,7 +47,6 @@ libtu_files = files( 'tu_nir_lower_multiview.c', 'tu_pass.c', 'tu_pipeline.c', - 'tu_private.h', 'tu_query.c', 'tu_shader.c', 'tu_suballoc.c', diff --git a/src/freedreno/vulkan/tu_private.h b/src/freedreno/vulkan/tu_private.h deleted file mode 100644 index cd8707ba817..00000000000 --- a/src/freedreno/vulkan/tu_private.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - * Copyright © 2016 Red Hat. - * Copyright © 2016 Bas Nieuwenhuizen - * - * based in part on anv driver which is: - * Copyright © 2015 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 (including the next - * paragraph) 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. - */ - -#ifndef TU_PRIVATE_H -#define TU_PRIVATE_H - -#include "tu_common.h" -#include "tu_android.h" -#include "tu_autotune.h" -#include "tu_clear_blit.h" -#include "tu_cmd_buffer.h" -#include "tu_cs.h" -#include "tu_descriptor_set.h" -#include "tu_device.h" -#include "tu_drm.h" -#include "tu_dynamic_rendering.h" -#include "tu_formats.h" -#include "tu_image.h" -#include "tu_lrz.h" -#include "tu_pass.h" -#include "tu_perfetto.h" -#include "tu_pipeline.h" -#include "tu_query.h" -#include "tu_shader.h" -#include "tu_suballoc.h" -#include "tu_util.h" -#include "tu_wsi.h" - -#endif /* TU_PRIVATE_H */