panfrost: Rename pan_blend.h into pan_blend_cso.h

We are about to add a pan_blend.h in src/panfrost/lib. Rename the
existing pan_blend.h so we can include both.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8963>
This commit is contained in:
Boris Brezillon 2021-02-09 18:46:09 +01:00 committed by Marge Bot
parent c21c6d134b
commit 334c96fa37
5 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@ C_SOURCES := \
\
pan_assemble.c \
pan_blend_cso.c \
pan_blend.h \
pan_blend_cso.h \
pan_blending.c \
pan_blending.h \
pan_blend_shaders.c \

View file

@ -25,8 +25,8 @@
*
*/
#ifndef __PAN_BLEND_H
#define __PAN_BLEND_H
#ifndef __PAN_BLEND_CSO_H
#define __PAN_BLEND_CSO_H
#include "util/hash_table.h"
#include "nir.h"

View file

@ -29,7 +29,7 @@
#include "pipe/p_defines.h"
#include <midgard_pack.h>
#include "pan_context.h"
#include "pan_blend.h"
#include "pan_blend_cso.h"
struct panfrost_blend_shader *
panfrost_create_blend_shader(struct panfrost_context *ctx,

View file

@ -28,7 +28,7 @@
#include "pipe/p_state.h"
#include "pipe/p_defines.h"
#include <midgard_pack.h>
#include "pan_blend.h"
#include "pan_blend_cso.h"
struct panfrost_blend_state;

View file

@ -31,7 +31,7 @@
#include <assert.h>
#include "pan_resource.h"
#include "pan_job.h"
#include "pan_blend.h"
#include "pan_blend_cso.h"
#include "pan_encoder.h"
#include "pan_texture.h"
#include "midgard_pack.h"