mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
Add tgsi_sse2.
This commit is contained in:
parent
cd93682530
commit
b5c14b36ad
4 changed files with 1755 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
1730
src/mesa/pipe/tgsi/exec/tgsi_sse2.c
Executable file
1730
src/mesa/pipe/tgsi/exec/tgsi_sse2.c
Executable file
File diff suppressed because it is too large
Load diff
21
src/mesa/pipe/tgsi/exec/tgsi_sse2.h
Executable file
21
src/mesa/pipe/tgsi/exec/tgsi_sse2.h
Executable 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
|
||||
|
||||
|
|
@ -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) \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue