mesa: rename ir_to_mesa.{cpp,h} -> link_program.{cpp,h}

The only code now left in this file is the linking function.

Reviewed-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14066>
This commit is contained in:
Timothy Arceri 2021-12-05 13:55:59 +11:00 committed by Marge Bot
parent 5cad5db97b
commit bf1f809d7f
6 changed files with 4 additions and 5 deletions

View File

@ -42,7 +42,7 @@
#include "compiler/glsl/glsl_parser_extras.h"
#include "compiler/glsl/glsl_symbol_table.h"
#include "compiler/glsl_types.h"
#include "program/ir_to_mesa.h"
#include "program/link_program.h"
#include "program/program.h"
#include "program/programopt.h"
#include "program/prog_cache.h"

View File

@ -29,7 +29,7 @@
#include "main/glheader.h"
#include "compiler/shader_enums.h"
#include "program/ir_to_mesa.h"
#include "program/link_program.h"
#include "util/macros.h"

View File

@ -298,8 +298,8 @@ files_libmesa = files(
'math/m_vector.h',
'program/arbprogparse.c',
'program/arbprogparse.h',
'program/ir_to_mesa.cpp',
'program/ir_to_mesa.h',
'program/link_program.cpp',
'program/link_program.h',
'program/prog_cache.c',
'program/prog_cache.h',
'program/prog_execute.c',

View File

@ -30,7 +30,6 @@
#include "program/program.h"
#include "program/prog_statevars.h"
#include "program/prog_parameter.h"
#include "program/ir_to_mesa.h"
#include "main/context.h"
#include "main/mtypes.h"
#include "main/errors.h"