intel: Rename files with gen_ prefix in common code to intel_

Changes in this patch include:
- Rename all files in src/intel/common path
- Update the filenames used in source and build files

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/9413>
This commit is contained in:
Anuj Phogat
2021-03-03 13:20:06 -08:00
committed by Marge Bot
parent b9e9f92f73
commit 733b0ee8cb
65 changed files with 151 additions and 151 deletions

View File

@@ -44,8 +44,8 @@
#include "drm-uapi/i915_drm.h"
#include "common/gen_aux_map.h"
#include "intel/common/gen_gem.h"
#include "common/intel_aux_map.h"
#include "intel/common/intel_gem.h"
#include "util/hash_table.h"
#include "util/set.h"
#include "util/u_upload_mgr.h"

View File

@@ -31,7 +31,7 @@
#include "util/u_dynarray.h"
#include "drm-uapi/i915_drm.h"
#include "common/gen_decoder.h"
#include "common/intel_decoder.h"
#include "iris_fence.h"
#include "iris_fine_fence.h"

View File

@@ -41,7 +41,7 @@
#include "iris_context.h"
#include "util/u_upload_mgr.h"
#include "intel/common/gen_l3_config.h"
#include "intel/common/intel_l3_config.h"
#include "blorp/blorp_genX_exec.h"

View File

@@ -48,10 +48,10 @@
#include <unistd.h>
#include "errno.h"
#include "common/gen_aux_map.h"
#include "common/gen_clflush.h"
#include "common/intel_aux_map.h"
#include "common/intel_clflush.h"
#include "dev/gen_debug.h"
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#include "dev/gen_device_info.h"
#include "main/macros.h"
#include "os/os_mman.h"

View File

@@ -33,8 +33,8 @@
#include "iris_context.h"
#include "iris_resource.h"
#include "iris_screen.h"
#include "common/gen_defines.h"
#include "common/gen_sample_positions.h"
#include "common/intel_defines.h"
#include "common/intel_sample_positions.h"
/**
* For debugging purposes, this returns a time in seconds.

View File

@@ -31,7 +31,7 @@
#include "util/u_threaded_context.h"
#include "intel/blorp/blorp.h"
#include "intel/dev/gen_debug.h"
#include "intel/common/gen_l3_config.h"
#include "intel/common/intel_l3_config.h"
#include "intel/compiler/brw_compiler.h"
#include "iris_batch.h"
#include "iris_binder.h"

View File

@@ -29,7 +29,7 @@
#include "drm-uapi/sync_file.h"
#include "util/u_debug.h"
#include "util/u_inlines.h"
#include "intel/common/gen_gem.h"
#include "intel/common/intel_gem.h"
#include "iris_batch.h"
#include "iris_bufmgr.h"

View File

@@ -38,7 +38,7 @@
#include "util/u_upload_mgr.h"
#include "compiler/nir/nir.h"
#include "compiler/nir/nir_builder.h"
#include "intel/common/gen_disasm.h"
#include "intel/common/intel_disasm.h"
#include "intel/compiler/brw_compiler.h"
#include "intel/compiler/brw_eu.h"
#include "intel/compiler/brw_nir.h"

View File

@@ -47,7 +47,7 @@
#include "iris_context.h"
#include "iris_resource.h"
#include "iris_screen.h"
#include "intel/common/gen_aux_map.h"
#include "intel/common/intel_aux_map.h"
#include "intel/dev/gen_debug.h"
#include "isl/isl.h"
#include "drm-uapi/drm_fourcc.h"

View File

@@ -53,9 +53,9 @@
#include "iris_screen.h"
#include "compiler/glsl_types.h"
#include "intel/compiler/brw_compiler.h"
#include "intel/common/gen_gem.h"
#include "intel/common/gen_l3_config.h"
#include "intel/common/gen_uuid.h"
#include "intel/common/intel_gem.h"
#include "intel/common/intel_l3_config.h"
#include "intel/common/intel_uuid.h"
#include "iris_monitor.h"
#define genX_call(devinfo, func, ...) \

View File

@@ -99,9 +99,9 @@
#include "drm-uapi/i915_drm.h"
#include "nir.h"
#include "intel/compiler/brw_compiler.h"
#include "intel/common/gen_aux_map.h"
#include "intel/common/gen_l3_config.h"
#include "intel/common/gen_sample_positions.h"
#include "intel/common/intel_aux_map.h"
#include "intel/common/intel_l3_config.h"
#include "intel/common/intel_sample_positions.h"
#include "iris_batch.h"
#include "iris_context.h"
#include "iris_defines.h"
@@ -109,7 +109,7 @@
#include "iris_resource.h"
#include "iris_genx_macros.h"
#include "intel/common/gen_guardband.h"
#include "intel/common/intel_guardband.h"
/**
* Statically assert that PIPE_* enums match the hardware packets.

View File

@@ -8,26 +8,26 @@ BLORP_FILES = \
blorp/blorp_priv.h
COMMON_FILES = \
common/gen_aux_map.c \
common/gen_aux_map.h \
common/gen_buffer_alloc.h \
common/gen_clflush.h \
common/gen_batch_decoder.c \
common/gen_decoder.c \
common/gen_decoder.h \
common/gen_disasm.c \
common/gen_disasm.h \
common/gen_defines.h \
common/gen_gem.c \
common/gen_gem.h \
common/gen_guardband.h \
common/gen_l3_config.c \
common/gen_l3_config.h \
common/gen_urb_config.c \
common/gen_sample_positions.c \
common/gen_sample_positions.h \
common/gen_uuid.c \
common/gen_uuid.h \
common/intel_aux_map.c \
common/intel_aux_map.h \
common/intel_buffer_alloc.h \
common/intel_clflush.h \
common/intel_batch_decoder.c \
common/intel_decoder.c \
common/intel_decoder.h \
common/intel_disasm.c \
common/intel_disasm.h \
common/intel_defines.h \
common/intel_gem.c \
common/intel_gem.h \
common/intel_guardband.h \
common/intel_l3_config.c \
common/intel_l3_config.h \
common/intel_urb_config.c \
common/intel_sample_positions.c \
common/intel_sample_positions.h \
common/intel_uuid.c \
common/intel_uuid.h \
common/intel_measure.c \
common/intel_measure.h

View File

@@ -26,8 +26,8 @@
#include "blorp_priv.h"
#include "dev/gen_device_info.h"
#include "common/gen_sample_positions.h"
#include "common/gen_l3_config.h"
#include "common/intel_sample_positions.h"
#include "common/intel_l3_config.h"
#include "genxml/gen_macros.h"
/**

View File

@@ -74,8 +74,8 @@
* - V: entry is valid
*/
#include "gen_aux_map.h"
#include "gen_gem.h"
#include "intel_aux_map.h"
#include "intel_gem.h"
#include "dev/gen_device_info.h"
#include "isl/isl.h"

View File

@@ -21,10 +21,10 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_AUX_MAP_H
#define GEN_AUX_MAP_H
#ifndef INTEL_AUX_MAP_H
#define INTEL_AUX_MAP_H
#include "gen_buffer_alloc.h"
#include "intel_buffer_alloc.h"
#include "isl/isl.h"
@@ -109,4 +109,4 @@ gen_aux_map_unmap_range(struct gen_aux_map_context *ctx, uint64_t address,
}
#endif
#endif /* GEN_AUX_MAP_H */
#endif /* INTEL_AUX_MAP_H */

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#include "common/gen_decoder.h"
#include "gen_disasm.h"
#include "common/intel_decoder.h"
#include "intel_disasm.h"
#include "util/macros.h"
#include "main/macros.h" /* Needed for ROUND_DOWN_TO */

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_BUFFER_ALLOC_H
#define GEN_BUFFER_ALLOC_H
#ifndef INTEL_BUFFER_ALLOC_H
#define INTEL_BUFFER_ALLOC_H
#include <stdint.h>
@@ -46,4 +46,4 @@ struct gen_mapped_pinned_buffer_alloc {
}
#endif
#endif /* GEN_BUFFER_ALLOC_H */
#endif /* INTEL_BUFFER_ALLOC_H */

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_CLFLUSH_H
#define GEN_CLFLUSH_H
#ifndef INTEL_CLFLUSH_H
#define INTEL_CLFLUSH_H
#define CACHELINE_SIZE 64
#define CACHELINE_MASK 63

View File

@@ -33,7 +33,7 @@
#include <util/macros.h>
#include <util/ralloc.h>
#include "gen_decoder.h"
#include "intel_decoder.h"
#include "isl/isl.h"
#include "genxml/genX_xml.h"

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_DECODER_H
#define GEN_DECODER_H
#ifndef INTEL_DECODER_H
#define INTEL_DECODER_H
#include <stdint.h>
#include <stdbool.h>
@@ -274,4 +274,4 @@ void gen_print_batch(struct gen_batch_decode_ctx *ctx,
#endif
#endif /* GEN_DECODER_H */
#endif /* INTEL_DECODER_H */

View File

@@ -22,8 +22,8 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef GEN_DEFINES_H
#define GEN_DEFINES_H
#ifndef INTEL_DEFINES_H
#define INTEL_DEFINES_H
#include "drm-uapi/i915_drm.h"
@@ -51,4 +51,4 @@ extern "C" {
}
#endif
#endif /* GEN_DEFINES_H */
#endif /* INTEL_DEFINES_H */

View File

@@ -26,7 +26,7 @@
#include "compiler/brw_inst.h"
#include "compiler/brw_eu.h"
#include "gen_disasm.h"
#include "intel_disasm.h"
static bool
is_send(uint32_t opcode)

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_DISASM_H
#define GEN_DISASM_H
#ifndef INTEL_DISASM_H
#define INTEL_DISASM_H
#include "intel/dev/gen_device_info.h"
@@ -37,4 +37,4 @@ void gen_disassemble(const struct gen_device_info *devinfo,
}
#endif
#endif /* GEN_DISASM_H */
#endif /* INTEL_DISASM_H */

View File

@@ -20,7 +20,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#include "gen_gem.h"
#include "intel_gem.h"
#include "drm-uapi/i915_drm.h"
bool

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_GEM_H
#define GEN_GEM_H
#ifndef INTEL_GEM_H
#define INTEL_GEM_H
#include <errno.h>
#include <stdbool.h>
@@ -74,4 +74,4 @@ gen_ioctl(int fd, unsigned long request, void *arg)
bool gen_gem_supports_syncobj_wait(int fd);
#endif /* GEN_GEM_H */
#endif /* INTEL_GEM_H */

View File

@@ -20,8 +20,8 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef GEN_GUARDBAND_H
#define GEN_GUARDBAND_H
#ifndef INTEL_GUARDBAND_H
#define INTEL_GUARDBAND_H
static inline void
gen_calculate_guardband_size(uint32_t fb_width, uint32_t fb_height,
@@ -114,4 +114,4 @@ gen_calculate_guardband_size(uint32_t fb_width, uint32_t fb_height,
}
}
#endif /* GEN_GUARDBAND_H */
#endif /* INTEL_GUARDBAND_H */

View File

@@ -27,7 +27,7 @@
#include "util/macros.h"
#include "main/macros.h"
#include "gen_l3_config.h"
#include "intel_l3_config.h"
struct gen_l3_list {
const struct gen_l3_config *configs;

View File

@@ -21,8 +21,8 @@
* IN THE SOFTWARE.
*/
#ifndef GEN_L3_CONFIG_H
#define GEN_L3_CONFIG_H
#ifndef INTEL_L3_CONFIG_H
#define INTEL_L3_CONFIG_H
#include <stdio.h>
@@ -106,4 +106,4 @@ void gen_get_urb_config(const struct gen_device_info *devinfo,
enum gen_urb_deref_block_size *deref_block_size,
bool *constrained);
#endif /* GEN_L3_CONFIG_H */
#endif /* INTEL_L3_CONFIG_H */

View File

@@ -21,7 +21,7 @@
* IN THE SOFTWARE.
*/
#include "gen_sample_positions.h"
#include "intel_sample_positions.h"
/**
* 1x MSAA has a single sample at the center: (0.5, 0.5) -> (0x8, 0x8).

View File

@@ -20,8 +20,8 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef GEN_SAMPLE_POSITIONS_H
#define GEN_SAMPLE_POSITIONS_H
#ifndef INTEL_SAMPLE_POSITIONS_H
#define INTEL_SAMPLE_POSITIONS_H
#include <util/macros.h>
@@ -126,4 +126,4 @@ prefix##sample_idx##YOffset = arr[sample_idx].y;
#define GEN_SAMPLE_POS_16X(prefix) \
GEN_SAMPLE_POS_16X_ARRAY(prefix, gen_sample_positions_16x)
#endif /* GEN_SAMPLE_POSITIONS_H */
#endif /* INTEL_SAMPLE_POSITIONS_H */

View File

@@ -28,7 +28,7 @@
#include "main/macros.h"
#include "compiler/shader_enums.h"
#include "gen_l3_config.h"
#include "intel_l3_config.h"
/**
* The following diagram shows how we partition the URB:

View File

@@ -21,7 +21,7 @@
* IN THE SOFTWARE.
*/
#include "gen_uuid.h"
#include "intel_uuid.h"
#include "git_sha1.h"
#include "util/mesa-sha1.h"

View File

@@ -22,8 +22,8 @@
*
*/
#ifndef GEN_UUID_H
#define GEN_UUID_H
#ifndef INTEL_UUID_H
#define INTEL_UUID_H
#include "dev/gen_device_info.h"
#include "isl/isl.h"
@@ -44,4 +44,4 @@ void gen_uuid_compute_driver_id(uint8_t *uuid,
}
#endif
#endif /* GEN_UUID_H */
#endif /* INTEL_UUID_H */

View File

@@ -21,25 +21,25 @@
# TODO: android?
files_libintel_common = files(
'gen_aux_map.c',
'gen_aux_map.h',
'gen_buffer_alloc.h',
'gen_clflush.h',
'gen_batch_decoder.c',
'gen_decoder.c',
'gen_decoder.h',
'gen_disasm.c',
'gen_disasm.h',
'gen_gem.c',
'gen_gem.h',
'gen_guardband.h',
'gen_l3_config.c',
'gen_l3_config.h',
'gen_urb_config.c',
'gen_sample_positions.c',
'gen_sample_positions.h',
'gen_uuid.c',
'gen_uuid.h',
'intel_aux_map.c',
'intel_aux_map.h',
'intel_buffer_alloc.h',
'intel_clflush.h',
'intel_batch_decoder.c',
'intel_decoder.c',
'intel_decoder.h',
'intel_disasm.c',
'intel_disasm.h',
'intel_gem.c',
'intel_gem.h',
'intel_guardband.h',
'intel_l3_config.c',
'intel_l3_config.h',
'intel_urb_config.c',
'intel_sample_positions.c',
'intel_sample_positions.h',
'intel_uuid.c',
'intel_uuid.h',
'intel_measure.c',
'intel_measure.h',
)

View File

@@ -26,7 +26,7 @@
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include "gen_decoder.h"
#include "intel_decoder.h"
static bool quiet = false;

View File

@@ -29,7 +29,7 @@
#include <unistd.h>
#include "gen_device_info.h"
#include "compiler/shader_enums.h"
#include "intel/common/gen_gem.h"
#include "intel/common/intel_gem.h"
#include "util/bitscan.h"
#include "util/macros.h"

View File

@@ -35,7 +35,7 @@
#include <drm-uapi/i915_drm.h>
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#include "dev/gen_debug.h"
#include "dev/gen_device_info.h"

View File

@@ -23,7 +23,7 @@
#include <unistd.h>
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#include "dev/gen_debug.h"
#include "dev/gen_device_info.h"

View File

@@ -31,7 +31,7 @@
#include "util/rb_tree.h"
#include "dev/gen_device_info.h"
#include "common/gen_decoder.h"
#include "common/intel_decoder.h"
#ifdef __cplusplus
extern "C" {

View File

@@ -27,7 +27,7 @@
#include <string.h>
#include <stdarg.h>
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#include "util/macros.h"
#include "aub_read.h"

View File

@@ -33,7 +33,7 @@
#include "drm-uapi/i915_drm.h"
#include "dev/gen_device_info.h"
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#ifdef __cplusplus
extern "C" {

View File

@@ -38,7 +38,7 @@
#include <getopt.h>
#include <zlib.h>
#include "common/gen_decoder.h"
#include "common/intel_decoder.h"
#include "dev/gen_debug.h"
#include "util/macros.h"

View File

@@ -39,7 +39,7 @@
#include "aub_read.h"
#include "aub_mem.h"
#include "common/gen_disasm.h"
#include "common/intel_disasm.h"
#define xtzalloc(name) ((decltype(&name)) calloc(1, sizeof(name)))
#define xtalloc(name) ((decltype(&name)) malloc(sizeof(name)))

View File

@@ -3,8 +3,8 @@
#include "imgui/imgui.h"
#include "common/gen_decoder.h"
#include "common/gen_disasm.h"
#include "common/intel_decoder.h"
#include "common/intel_disasm.h"
struct aub_viewer_cfg {
ImColor clear_color;

View File

@@ -32,7 +32,7 @@
#include <sys/resource.h>
#include <sys/un.h>
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#include "dev/gen_device_info.h"
#include "drm-uapi/i915_drm.h"
#include "drm-shim/drm_shim.h"

View File

@@ -43,7 +43,7 @@
#define MESA_LOG_TAG "INTEL-SANITIZE-GPU"
#include "util/log.h"
#include "common/gen_clflush.h"
#include "common/intel_clflush.h"
static int (*libc_open)(const char *pathname, int flags, mode_t mode);
static int (*libc_close)(int fd);

View File

@@ -29,7 +29,7 @@
#include "anv_private.h"
#include "common/gen_aux_map.h"
#include "common/intel_aux_map.h"
#include "util/anon_file.h"
#ifdef HAVE_VALGRIND

View File

@@ -45,9 +45,9 @@
#include "git_sha1.h"
#include "vk_util.h"
#include "vk_deferred_operation.h"
#include "common/gen_aux_map.h"
#include "common/gen_defines.h"
#include "common/gen_uuid.h"
#include "common/intel_aux_map.h"
#include "common/intel_defines.h"
#include "common/intel_uuid.h"
#include "compiler/glsl_types.h"
#include "perf/gen_perf.h"

View File

@@ -30,8 +30,8 @@
#include <fcntl.h>
#include "anv_private.h"
#include "common/gen_defines.h"
#include "common/gen_gem.h"
#include "common/intel_defines.h"
#include "common/intel_gem.h"
#include "drm-uapi/sync_file.h"
/**

View File

@@ -29,9 +29,9 @@
#include "util/mesa-sha1.h"
#include "util/os_time.h"
#include "common/gen_l3_config.h"
#include "common/gen_disasm.h"
#include "common/gen_sample_positions.h"
#include "common/intel_l3_config.h"
#include "common/intel_disasm.h"
#include "common/intel_sample_positions.h"
#include "anv_private.h"
#include "compiler/brw_nir.h"
#include "anv_nir.h"

View File

@@ -43,10 +43,10 @@
#define VG(x) ((void)0)
#endif
#include "common/gen_clflush.h"
#include "common/gen_decoder.h"
#include "common/gen_gem.h"
#include "common/gen_l3_config.h"
#include "common/intel_clflush.h"
#include "common/intel_decoder.h"
#include "common/intel_gem.h"
#include "common/intel_l3_config.h"
#include "common/intel_measure.h"
#include "dev/gen_device_info.h"
#include "blorp/blorp.h"

View File

@@ -31,7 +31,7 @@
#include "genxml/gen_macros.h"
#include "genxml/genX_pack.h"
#include "common/gen_guardband.h"
#include "common/intel_guardband.h"
#if GEN_GEN == 8
void

View File

@@ -31,7 +31,7 @@
#undef __gen_user_data
#undef __gen_combine_address
#include "common/gen_l3_config.h"
#include "common/intel_l3_config.h"
#include "blorp/blorp_genX_exec.h"
static void blorp_measure_start(struct blorp_batch *_batch,

View File

@@ -30,8 +30,8 @@
#include "vk_util.h"
#include "util/fast_idiv_by_const.h"
#include "common/gen_aux_map.h"
#include "common/gen_l3_config.h"
#include "common/intel_aux_map.h"
#include "common/intel_l3_config.h"
#include "genxml/gen_macros.h"
#include "genxml/genX_pack.h"

View File

@@ -26,7 +26,7 @@
#include "genxml/gen_macros.h"
#include "genxml/genX_pack.h"
#include "common/gen_l3_config.h"
#include "common/intel_l3_config.h"
/**
* This file implements some lightweight memcpy/memset operations on the GPU

View File

@@ -26,8 +26,8 @@
#include "genxml/gen_macros.h"
#include "genxml/genX_pack.h"
#include "common/gen_l3_config.h"
#include "common/gen_sample_positions.h"
#include "common/intel_l3_config.h"
#include "common/intel_sample_positions.h"
#include "nir/nir_xfb_info.h"
#include "vk_util.h"
#include "vk_format.h"

View File

@@ -29,8 +29,8 @@
#include "anv_private.h"
#include "common/gen_aux_map.h"
#include "common/gen_sample_positions.h"
#include "common/intel_aux_map.h"
#include "common/intel_sample_positions.h"
#include "genxml/gen_macros.h"
#include "genxml/genX_pack.h"

View File

@@ -45,9 +45,9 @@
#include <stdbool.h>
#include "errno.h"
#include "common/gen_clflush.h"
#include "common/intel_clflush.h"
#include "dev/gen_debug.h"
#include "common/gen_gem.h"
#include "common/intel_gem.h"
#include "dev/gen_device_info.h"
#include "libdrm_macros.h"
#include "main/macros.h"

View File

@@ -78,7 +78,7 @@
#include "util/u_memory.h"
#include "isl/isl.h"
#include "common/gen_defines.h"
#include "common/intel_defines.h"
#include "compiler/spirv/nir_spirv.h"
/***************************************

View File

@@ -47,7 +47,7 @@
#include <brw_bufmgr.h>
#include "dev/gen_debug.h"
#include "common/gen_decoder.h"
#include "common/intel_decoder.h"
#include "intel_screen.h"
#include "intel_tex_obj.h"
#include "perf/gen_perf.h"

View File

@@ -21,7 +21,7 @@
* IN THE SOFTWARE.
*/
#include "common/gen_l3_config.h"
#include "common/intel_l3_config.h"
#include "brw_context.h"
#include "brw_defines.h"

View File

@@ -27,7 +27,7 @@
#include "brw_state.h"
#include "brw_defines.h"
#include "common/gen_l3_config.h"
#include "common/intel_l3_config.h"
/**
* The following diagram shows how we partition the URB:

View File

@@ -26,9 +26,9 @@
#include "main/samplerobj.h"
#include "dev/gen_device_info.h"
#include "common/gen_sample_positions.h"
#include "common/intel_sample_positions.h"
#include "genxml/gen_macros.h"
#include "common/gen_guardband.h"
#include "common/intel_guardband.h"
#include "main/bufferobj.h"
#include "main/context.h"

View File

@@ -31,8 +31,8 @@
#include "brw_context.h"
#include "brw_defines.h"
#include "brw_state.h"
#include "common/gen_decoder.h"
#include "common/gen_gem.h"
#include "common/intel_decoder.h"
#include "common/intel_gem.h"
#include "util/hash_table.h"

View File

@@ -48,7 +48,7 @@
#include "util/u_cpu_detect.h"
#include "util/u_memory.h"
#include "common/gen_defines.h"
#include "common/intel_defines.h"
static const driOptionDescription brw_driconf[] = {
DRI_CONF_SECTION_PERFORMANCE