Add tgsi_sse2.

This commit is contained in:
michal 2007-08-24 12:52:47 +01:00
parent cd93682530
commit b5c14b36ad
4 changed files with 1755 additions and 2 deletions

View file

@ -7,6 +7,7 @@
#include "tgsi_exec.h"
#include "tgsi_dump.h"
#include "tgsi_util.h"
#include "tgsi_sse2.h"
#endif // !defined TGSI_CORE_H

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,21 @@
#if !defined TGSI_SSE2_H
#define TGSI_SSE2_H
#if defined __cplusplus
extern "C" {
#endif // defined __cplusplus
struct tgsi_token;
struct x86_function;
unsigned
tgsi_emit_sse2(
struct tgsi_token *tokens,
struct x86_function *function );
#if defined __cplusplus
} // extern "C"
#endif // defined __cplusplus
#endif // !defined TGSI_SSE2_H

View file

@ -166,11 +166,12 @@ DRAW_SOURCES = \
pipe/draw/draw_twoside.c \
pipe/draw/draw_unfilled.c
TGSICORE_SOURCES = \
TGSIEXEC_SOURCES = \
pipe/tgsi/exec/tgsi_build.c \
pipe/tgsi/exec/tgsi_dump.c \
pipe/tgsi/exec/tgsi_exec.c \
pipe/tgsi/exec/tgsi_parse.c \
pipe/tgsi/exec/tgsi_sse2.c \
pipe/tgsi/exec/tgsi_util.c
TGSIDECO_SOURCES = \
@ -359,7 +360,7 @@ SOLO_SOURCES = \
$(VBO_SOURCES) \
$(VF_SOURCES) \
$(DRAW_SOURCES) \
$(TGSICORE_SOURCES) \
$(TGSIEXEC_SOURCES) \
$(TGSIDECO_SOURCES) \
$(TGSIMESA_SOURCES) \
$(STATETRACKER_SOURCES) \