mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
aco: Don't include headers from radv.
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21696>
This commit is contained in:
parent
a0141c6308
commit
87de5b2b9e
4 changed files with 13 additions and 12 deletions
|
|
@ -29,6 +29,7 @@
|
|||
|
||||
#include "util/memstream.h"
|
||||
|
||||
#include "ac_shader_util.h"
|
||||
#include <algorithm>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
|
|
|||
|
|
@ -26,7 +26,6 @@
|
|||
|
||||
#include "common/ac_nir.h"
|
||||
#include "common/sid.h"
|
||||
#include "vulkan/radv_descriptor_set.h"
|
||||
|
||||
#include "nir_control_flow.h"
|
||||
|
||||
|
|
@ -399,7 +398,7 @@ init_context(isel_context* ctx, nir_shader* shader)
|
|||
ctx->ub_config.max_workgroup_size[0] = 2048;
|
||||
ctx->ub_config.max_workgroup_size[1] = 2048;
|
||||
ctx->ub_config.max_workgroup_size[2] = 2048;
|
||||
for (unsigned i = 0; i < MAX_VERTEX_ATTRIBS; i++) {
|
||||
for (unsigned i = 0; i < ACO_MAX_VERTEX_ATTRIBS; i++) {
|
||||
pipe_format format = (pipe_format)ctx->options->key.vs.vertex_attribute_formats[i];
|
||||
const struct util_format_description* desc = util_format_description(format);
|
||||
|
||||
|
|
|
|||
|
|
@ -25,14 +25,14 @@
|
|||
#ifndef ACO_IR_H
|
||||
#define ACO_IR_H
|
||||
|
||||
#include "aco_opcodes.h"
|
||||
#include "aco_util.h"
|
||||
#include "aco_interface.h"
|
||||
#include "aco_opcodes.h"
|
||||
#include "aco_shader_info.h"
|
||||
#include "vulkan/radv_shader.h"
|
||||
#include "aco_util.h"
|
||||
|
||||
#include "nir.h"
|
||||
|
||||
#include "ac_binary.h"
|
||||
#include <algorithm>
|
||||
#include <bitset>
|
||||
#include <memory>
|
||||
|
|
|
|||
|
|
@ -23,15 +23,16 @@
|
|||
*/
|
||||
#ifndef ACO_TEST_COMMON_H
|
||||
#define ACO_TEST_COMMON_H
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "amd_family.h"
|
||||
#include "aco_ir.h"
|
||||
#include "aco_builder.h"
|
||||
#include "aco_ir.h"
|
||||
|
||||
#include "util/macros.h"
|
||||
#include "vulkan/radv_shader.h"
|
||||
|
||||
#include "ac_shader_util.h"
|
||||
#include "amd_family.h"
|
||||
#include <map>
|
||||
#include <stdio.h>
|
||||
#include <string>
|
||||
|
||||
struct TestDef {
|
||||
const char *name;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue