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:
Alyssa Rosenzweig 2022-12-22 21:11:25 -05:00 committed by Marge Bot
parent 90e128ae03
commit e35719be6f
4 changed files with 8 additions and 2 deletions

View file

@ -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;

View file

@ -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;

View file

@ -1,3 +1,6 @@
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
void

View file

@ -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 || \