mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
gallivm/llvmpipe: move lp_bld_blend* files to llvmpipe/ directory
This commit is contained in:
parent
7a05161278
commit
d75129dd13
8 changed files with 15 additions and 14 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -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"
|
||||
|
||||
|
||||
Loading…
Add table
Reference in a new issue