1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 **************************************************************************/
31 #if defined __cplusplus
35 #include "pipe/p_compiler.h"
37 struct tgsi_exec_machine
;
38 struct tgsi_interp_coef
;
44 const struct tgsi_token
*tokens
,
45 struct x86_function
*function
,
46 float (*immediates
)[4],
47 boolean do_swizzles
);
50 /* This is the function prototype generated when do_swizzles is false
51 * -- effectively for fragment shaders.
53 typedef void (PIPE_CDECL
*tgsi_sse2_fs_function
) (
54 struct tgsi_exec_machine
*machine
, /* 1 */
55 const float (*constant
)[4], /* 2 */
56 const float (*immediate
)[4], /* 3 */
57 const struct tgsi_interp_coef
*coef
/* 4 */
61 /* This is the function prototype generated when do_swizzles is true
62 * -- effectively for vertex shaders.
64 typedef void (PIPE_CDECL
*tgsi_sse2_vs_func
) (
65 struct tgsi_exec_machine
*machine
, /* 1 */
66 const float (*constant
)[4], /* 2 */
67 const float (*immediate
)[4], /* 3 */
68 const float (*aos_input
)[4], /* 4 */
69 uint num_inputs
, /* 5 */
70 uint input_stride
, /* 6 */
71 float (*aos_output
)[4], /* 7 */
72 uint num_outputs
, /* 8 */
73 uint output_stride
); /* 9 */
76 #if defined __cplusplus
80 #endif /* TGSI_SSE2_H */