mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-05 08:00:30 +01:00
panfrost: Add missing #includes
Found shuffling headers with clang format. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20425>
This commit is contained in:
parent
90e128ae03
commit
e35719be6f
4 changed files with 8 additions and 2 deletions
|
|
@ -28,9 +28,10 @@
|
|||
#ifndef __PAN_BLEND_CSO_H
|
||||
#define __PAN_BLEND_CSO_H
|
||||
|
||||
#include "pan_blend.h"
|
||||
#include "util/hash_table.h"
|
||||
#include "nir.h"
|
||||
#include "pan_blend.h"
|
||||
#include "pan_job.h"
|
||||
|
||||
struct panfrost_bo;
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
#ifndef __PAN_INDIRECT_DISPATCH_SHADERS_H__
|
||||
#define __PAN_INDIRECT_DISPATCH_SHADERS_H__
|
||||
|
||||
#include "pan_scoreboard.h"
|
||||
#include "genxml/gen_macros.h"
|
||||
|
||||
struct pan_device;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -23,9 +23,10 @@
|
|||
#ifndef __MDG_HELPERS_H
|
||||
#define __MDG_HELPERS_H
|
||||
|
||||
#include "util/macros.h"
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include "midgard.h"
|
||||
#include "util/macros.h"
|
||||
|
||||
#define OP_IS_LOAD_VARY_F(op) (\
|
||||
op == midgard_op_ld_vary_16 || \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue