gallivm/llvmpipe: move lp_bld_depth.[ch] to llvmpipe/ directory

This is specific to the llvmpipe driver and not re-usable.
This commit is contained in:
Brian Paul 2010-04-16 10:20:32 -06:00
parent cf88dcf731
commit f17d1513ac
6 changed files with 10 additions and 9 deletions

View File

@ -152,7 +152,6 @@ GALLIVM_SOURCES = \
gallivm/lp_bld_const.c \
gallivm/lp_bld_conv.c \
gallivm/lp_bld_debug.c \
gallivm/lp_bld_depth.c \
gallivm/lp_bld_flow.c \
gallivm/lp_bld_format_soa.c \
gallivm/lp_bld_init.c \

View File

@ -201,7 +201,6 @@ if env['llvm']:
'gallivm/lp_bld_const.c',
'gallivm/lp_bld_conv.c',
'gallivm/lp_bld_debug.c',
'gallivm/lp_bld_depth.c',
'gallivm/lp_bld_flow.c',
'gallivm/lp_bld_format_soa.c',
'gallivm/lp_bld_intr.c',

View File

@ -6,6 +6,7 @@ LIBNAME = llvmpipe
DEFINES += -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS
C_SOURCES = \
lp_bld_depth.c \
lp_bld_interp.c \
lp_clear.c \
lp_context.c \

View File

@ -26,6 +26,7 @@ env.Depends('lp_tile_soa.c', [
llvmpipe = env.ConvenienceLibrary(
target = 'llvmpipe',
source = [
'lp_bld_depth.c',
'lp_bld_interp.c',
'lp_clear.c',
'lp_context.c',

View File

@ -67,14 +67,15 @@
#include "pipe/p_state.h"
#include "util/u_format.h"
#include "lp_bld_type.h"
#include "lp_bld_arit.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_arit.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 "gallivm/lp_bld_swizzle.h"
#include "lp_bld_depth.h"
#include "lp_bld_swizzle.h"
/** Used to select fields from pipe_stencil_state */