gallivm/llvmpipe: move lp_bld_alpha.c to llvmpipe/ directory

This commit is contained in:
Brian Paul 2010-04-16 10:22:33 -06:00
parent f17d1513ac
commit 7a05161278
6 changed files with 8 additions and 7 deletions

View file

@ -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 \

View file

@ -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',

View file

@ -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 \

View file

@ -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',

View file

@ -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"