intel: Rename gen_context.h to intel_context.h

export SEARCH_PATH="src/intel src/gallium/drivers/iris src/mesa/drivers/dri/i965
grep -E "gen_context" -rIl $SEARCH_PATH | xargs sed -ie "s/gen_context\.h/intel_context\.h/g"

Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10241>
This commit is contained in:
Anuj Phogat
2021-04-05 17:11:05 -07:00
committed by Marge Bot
parent 52c3f3df47
commit 71ad340a9c
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -31,7 +31,7 @@
#include "util/macros.h"
#include "aub_read.h"
#include "gen_context.h"
#include "intel_context.h"
#include "intel_aub.h"
#define TYPE(dw) (((dw) >> 29) & 7)
+1 -1
View File
@@ -31,7 +31,7 @@
#include "drm-uapi/i915_drm.h"
#include "intel_aub.h"
#include "gen_context.h"
#include "intel_context.h"
#ifndef ALIGN
#define ALIGN(x, y) (((x) + (y)-1) & ~((y)-1))
+1 -1
View File
@@ -113,7 +113,7 @@ configure_file(
libintel_dump_gpu = shared_library(
'intel_dump_gpu',
files(
'gen_context.h', 'gfx8_context.h', 'gfx10_context.h', 'intel_aub.h',
'intel_context.h', 'gfx8_context.h', 'gfx10_context.h', 'intel_aub.h',
'aub_write.h', 'aub_write.c', 'intel_dump_gpu.c',
),
dependencies : [dep_dl, idep_mesautil],