gallivm/llvmpipe: move lp_bld_blend* files to llvmpipe/ directory

This commit is contained in:
Brian Paul 2010-04-16 10:28:21 -06:00
parent 7a05161278
commit d75129dd13
8 changed files with 15 additions and 14 deletions

View file

@ -145,9 +145,6 @@ C_SOURCES = \
GALLIVM_SOURCES = \
gallivm/lp_bld_arit.c \
gallivm/lp_bld_blend_aos.c \
gallivm/lp_bld_blend_logicop.c \
gallivm/lp_bld_blend_soa.c \
gallivm/lp_bld_const.c \
gallivm/lp_bld_conv.c \
gallivm/lp_bld_debug.c \

View file

@ -194,9 +194,6 @@ source = [
if env['llvm']:
source += [
'gallivm/lp_bld_arit.c',
'gallivm/lp_bld_blend_aos.c',
'gallivm/lp_bld_blend_logicop.c',
'gallivm/lp_bld_blend_soa.c',
'gallivm/lp_bld_const.c',
'gallivm/lp_bld_conv.c',
'gallivm/lp_bld_debug.c',

View file

@ -7,6 +7,9 @@ DEFINES += -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS
C_SOURCES = \
lp_bld_alpha.c \
lp_bld_blend_aos.c \
lp_bld_blend_logicop.c \
lp_bld_blend_soa.c \
lp_bld_depth.c \
lp_bld_interp.c \
lp_clear.c \

View file

@ -27,6 +27,9 @@ llvmpipe = env.ConvenienceLibrary(
target = 'llvmpipe',
source = [
'lp_bld_alpha.c',
'lp_bld_blend_aos.c',
'lp_bld_blend_logicop.c',
'lp_bld_blend_soa.c',
'lp_bld_depth.c',
'lp_bld_interp.c',
'lp_clear.c',

View file

@ -46,13 +46,14 @@
#include "pipe/p_state.h"
#include "util/u_debug.h"
#include "lp_bld_type.h"
#include "lp_bld_const.h"
#include "lp_bld_arit.h"
#include "lp_bld_logic.h"
#include "lp_bld_swizzle.h"
#include "gallivm/lp_bld_type.h"
#include "gallivm/lp_bld_const.h"
#include "gallivm/lp_bld_arit.h"
#include "gallivm/lp_bld_logic.h"
#include "gallivm/lp_bld_swizzle.h"
#include "gallivm/lp_bld_debug.h"
#include "lp_bld_blend.h"
#include "lp_bld_debug.h"
/**

View file

@ -71,8 +71,8 @@
#include "pipe/p_state.h"
#include "util/u_debug.h"
#include "lp_bld_type.h"
#include "lp_bld_arit.h"
#include "gallivm/lp_bld_type.h"
#include "gallivm/lp_bld_arit.h"
#include "lp_bld_blend.h"