mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
gallivm/llvmpipe: move lp_bld_alpha.c to llvmpipe/ directory
This commit is contained in:
parent
f17d1513ac
commit
7a05161278
6 changed files with 8 additions and 7 deletions
|
|
@ -144,7 +144,6 @@ C_SOURCES = \
|
|||
#vl/vl_shader_build.c \
|
||||
|
||||
GALLIVM_SOURCES = \
|
||||
gallivm/lp_bld_alpha.c \
|
||||
gallivm/lp_bld_arit.c \
|
||||
gallivm/lp_bld_blend_aos.c \
|
||||
gallivm/lp_bld_blend_logicop.c \
|
||||
|
|
|
|||
|
|
@ -193,7 +193,6 @@ source = [
|
|||
|
||||
if env['llvm']:
|
||||
source += [
|
||||
'gallivm/lp_bld_alpha.c',
|
||||
'gallivm/lp_bld_arit.c',
|
||||
'gallivm/lp_bld_blend_aos.c',
|
||||
'gallivm/lp_bld_blend_logicop.c',
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ LIBNAME = llvmpipe
|
|||
DEFINES += -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS
|
||||
|
||||
C_SOURCES = \
|
||||
lp_bld_alpha.c \
|
||||
lp_bld_depth.c \
|
||||
lp_bld_interp.c \
|
||||
lp_clear.c \
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ env.Depends('lp_tile_soa.c', [
|
|||
llvmpipe = env.ConvenienceLibrary(
|
||||
target = 'llvmpipe',
|
||||
source = [
|
||||
'lp_bld_alpha.c',
|
||||
'lp_bld_depth.c',
|
||||
'lp_bld_interp.c',
|
||||
'lp_clear.c',
|
||||
|
|
|
|||
|
|
@ -33,11 +33,12 @@
|
|||
|
||||
#include "pipe/p_state.h"
|
||||
|
||||
#include "lp_bld_type.h"
|
||||
#include "lp_bld_const.h"
|
||||
#include "lp_bld_logic.h"
|
||||
#include "lp_bld_flow.h"
|
||||
#include "lp_bld_debug.h"
|
||||
#include "gallivm/lp_bld_type.h"
|
||||
#include "gallivm/lp_bld_const.h"
|
||||
#include "gallivm/lp_bld_logic.h"
|
||||
#include "gallivm/lp_bld_flow.h"
|
||||
#include "gallivm/lp_bld_debug.h"
|
||||
|
||||
#include "lp_bld_alpha.h"
|
||||
|
||||
|
||||
Loading…
Add table
Reference in a new issue