forked from KolibriOS/kolibrios
Mesa: Makefiles
git-svn-id: svn://kolibrios.org@4632 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
7bf3b20fcc
commit
d2cab8fdd5
@ -28,7 +28,7 @@ MESA_DEFS+= -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDI
|
||||
|
||||
EGL_DEFS = -DHAVE_DRM_PLATFORM -D__unix__ -DMESA_EGL_NO_X11_HEADERS -D_EGL_BUILT_IN_DRIVER_DRI2
|
||||
|
||||
SUBDIRS = src/egl src/glsl
|
||||
SUBDIRS = src/egl src/glsl src/mapi src/mesa
|
||||
|
||||
# targets
|
||||
|
||||
|
125
contrib/sdk/sources/Mesa/src/glsl/Makefile
Normal file
125
contrib/sdk/sources/Mesa/src/glsl/Makefile
Normal file
@ -0,0 +1,125 @@
|
||||
CC = gcc
|
||||
|
||||
SRC_DIR:=$(SDK_DIR)/sources
|
||||
MESA_SRC:= $(SRC_DIR)/Mesa/src
|
||||
|
||||
CFLAGS_OPT = -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32 -U_MSC_VER -Os
|
||||
CFLAGS_OPT+= -fomit-frame-pointer -mno-ms-bitfields
|
||||
CFLAGS = -c $(CFLAGS_OPT)
|
||||
|
||||
INC_MESA:= -I$(SRC_DIR)/newlib/include -I$(SRC_DIR)/Mesa/include
|
||||
INC_MESA+= -I./src -I$(MESA_SRC)/glsl -I$(MESA_SRC)/mesa -I$(MESA_SRC)/mapi
|
||||
|
||||
MESA_DEFS= -DMESA_DLL -DBUILD_GL32 -DMAPI_MODE_UTIL -DMAPI_TABLE_NUM_STATIC=87 -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_SSE_ASM -DMAPI_TABLE_NUM_DYNAMIC=256
|
||||
MESA_DEFS+= -DPACKAGE_NAME=\"Mesa\" -DPACKAGE_VERSION=\"9.2.5\" -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi\?product=Mesa\"
|
||||
MESA_DEFS+= -DPACKAGE_URL=\"\" -DPACKAGE=\"mesa\" -DVERSION=\"9.2.5\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1
|
||||
MESA_DEFS+= -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1
|
||||
|
||||
GLSL_SRC = \
|
||||
glcpp/glcpp-lex.c \
|
||||
glcpp/glcpp-parse.c \
|
||||
glcpp/pp.c \
|
||||
ast_array_index.cpp \
|
||||
ast_expr.cpp \
|
||||
ast_function.cpp \
|
||||
ast_to_hir.cpp \
|
||||
ast_type.cpp \
|
||||
builtin_function.cpp \
|
||||
builtin_types.cpp \
|
||||
builtin_variables.cpp \
|
||||
glsl_lexer.cpp \
|
||||
glsl_parser.cpp \
|
||||
glsl_parser_extras.cpp \
|
||||
glsl_symbol_table.cpp \
|
||||
glsl_types.cpp \
|
||||
hir_field_selection.cpp \
|
||||
ir.cpp \
|
||||
ir_basic_block.cpp \
|
||||
ir_builder.cpp \
|
||||
ir_clone.cpp \
|
||||
ir_constant_expression.cpp \
|
||||
ir_expression_flattening.cpp \
|
||||
ir_function.cpp \
|
||||
ir_function_can_inline.cpp \
|
||||
ir_function_detect_recursion.cpp\
|
||||
ir_hierarchical_visitor.cpp \
|
||||
ir_hv_accept.cpp \
|
||||
ir_import_prototypes.cpp \
|
||||
ir_print_visitor.cpp \
|
||||
ir_reader.cpp \
|
||||
ir_rvalue_visitor.cpp \
|
||||
ir_set_program_inouts.cpp \
|
||||
ir_validate.cpp \
|
||||
ir_variable_refcount.cpp \
|
||||
link_functions.cpp \
|
||||
link_interface_blocks.cpp \
|
||||
link_uniform_block_active_visitor.cpp \
|
||||
link_uniform_blocks.cpp \
|
||||
link_uniform_initializers.cpp \
|
||||
link_uniforms.cpp \
|
||||
link_varyings.cpp \
|
||||
linker.cpp \
|
||||
loop_analysis.cpp \
|
||||
loop_controls.cpp \
|
||||
loop_unroll.cpp \
|
||||
lower_clip_distance.cpp \
|
||||
lower_discard.cpp \
|
||||
lower_discard_flow.cpp \
|
||||
lower_if_to_cond_assign.cpp \
|
||||
lower_instructions.cpp \
|
||||
lower_jumps.cpp \
|
||||
lower_mat_op_to_vec.cpp \
|
||||
lower_named_interface_blocks.cpp\
|
||||
lower_noise.cpp \
|
||||
lower_output_reads.cpp \
|
||||
lower_packed_varyings.cpp \
|
||||
lower_packing_builtins.cpp \
|
||||
lower_texture_projection.cpp \
|
||||
lower_ubo_reference.cpp \
|
||||
lower_variable_index_to_cond_assign.cpp \
|
||||
lower_vec_index_to_cond_assign.cpp \
|
||||
lower_vec_index_to_swizzle.cpp \
|
||||
lower_vector.cpp \
|
||||
lower_vector_insert.cpp \
|
||||
opt_algebraic.cpp \
|
||||
opt_array_splitting.cpp \
|
||||
opt_constant_folding.cpp \
|
||||
opt_constant_propagation.cpp \
|
||||
opt_constant_variable.cpp \
|
||||
opt_copy_propagation.cpp \
|
||||
opt_copy_propagation_elements.cpp \
|
||||
opt_dead_builtin_varyings.cpp \
|
||||
opt_dead_code.cpp \
|
||||
opt_dead_code_local.cpp \
|
||||
opt_dead_functions.cpp \
|
||||
opt_flatten_nested_if_blocks.cpp\
|
||||
opt_flip_matrices.cpp \
|
||||
opt_function_inlining.cpp \
|
||||
opt_if_simplification.cpp \
|
||||
opt_noop_swizzle.cpp \
|
||||
opt_redundant_jumps.cpp \
|
||||
opt_structure_splitting.cpp \
|
||||
opt_swizzle_swizzle.cpp \
|
||||
opt_tree_grafting.cpp \
|
||||
ralloc.c \
|
||||
s_expression.cpp \
|
||||
strtod.c \
|
||||
$(NULL)
|
||||
|
||||
|
||||
GLSL_OBJS = $(patsubst %.cpp, %.o, $(patsubst %.c, %.o, $(GLSL_SRC)))
|
||||
|
||||
# targets
|
||||
|
||||
all: libglsl.a
|
||||
|
||||
libglsl.a : $(GLSL_OBJS) Makefile
|
||||
ar cvrs libglsl.a $(GLSL_OBJS)
|
||||
mv -f libglsl.a $(SDK_DIR)/lib
|
||||
|
||||
%.o : %.c Makefile
|
||||
$(CC) $(CFLAGS) -std=c99 $(MESA_DEFS) $(INC_MESA) -o $@ $<
|
||||
|
||||
%.o : %.cpp Makefile
|
||||
$(CC) $(CFLAGS) $(MESA_DEFS) $(INC_MESA) -o $@ $<
|
||||
|
58
contrib/sdk/sources/Mesa/src/mapi/Makefile
Normal file
58
contrib/sdk/sources/Mesa/src/mapi/Makefile
Normal file
@ -0,0 +1,58 @@
|
||||
CC = gcc
|
||||
|
||||
SRC_DIR:=$(SDK_DIR)/sources
|
||||
MESA_SRC:= $(SRC_DIR)/Mesa/src
|
||||
|
||||
CFLAGS_OPT = -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32 -U_MSC_VER -Os
|
||||
CFLAGS_OPT+= -fomit-frame-pointer -mno-ms-bitfields
|
||||
CFLAGS = -c $(CFLAGS_OPT)
|
||||
|
||||
LD = ld
|
||||
LDFLAGS = -nostdlib -shared -s --image-base 0 -T $(SRC_DIR)/newlib/dll.lds --out-implib libGL.dll.a -e _DllStartup
|
||||
|
||||
STRIP = $(PREFIX)strip
|
||||
|
||||
INC_MESA:= -I$(SRC_DIR)/newlib/include -I$(SRC_DIR)/Mesa/include
|
||||
INC_MESA+= -I./src -I$(MESA_SRC)/glsl -I$(MESA_SRC)/mesa -I$(MESA_SRC)/mapi
|
||||
|
||||
|
||||
LIBPATH:= -L$(SDK_DIR)/lib
|
||||
|
||||
LIBS:= -ldll -ldrm.dll -lc.dll -lgcc
|
||||
|
||||
MESA_DEFS= -DMESA_DLL -DBUILD_GL32 -DMAPI_MODE_UTIL -DMAPI_TABLE_NUM_STATIC=87 -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_SSE_ASM -DMAPI_TABLE_NUM_DYNAMIC=256
|
||||
MESA_DEFS+= -DPACKAGE_NAME=\"Mesa\" -DPACKAGE_VERSION=\"9.2.5\" -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi\?product=Mesa\"
|
||||
MESA_DEFS+= -DPACKAGE_URL=\"\" -DPACKAGE=\"mesa\" -DVERSION=\"9.2.5\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1
|
||||
MESA_DEFS+= -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -D_GLAPI_DLL_EXPORTS
|
||||
|
||||
|
||||
LIBGL_SRC = \
|
||||
glapi/glapi.c \
|
||||
glapi/glapi_dispatch.c \
|
||||
glapi/glapi_entrypoint.c \
|
||||
glapi/glapi_getproc.c \
|
||||
glapi/glapi_nop.c \
|
||||
glapi/glapi_x86.S \
|
||||
u_current.c \
|
||||
u_execmem.c \
|
||||
$(NULL)
|
||||
|
||||
LIBGL_OBJS = $(patsubst %.c, %.o, $(patsubst %.S, %.o, $(LIBGL_SRC)))
|
||||
|
||||
# targets
|
||||
|
||||
all: libGL.dll
|
||||
|
||||
libGL.dll: $(LIBGL_OBJS) Makefile
|
||||
$(LD) $(LDFLAGS) $(LIBPATH) -o $@ $(LIBGL_OBJS) $(LIBS)
|
||||
$(STRIP) $@
|
||||
mv -f $@ $(SDK_DIR)/bin
|
||||
mv -f libGL.dll.a $(SDK_DIR)/lib
|
||||
|
||||
%.o : %.c Makefile
|
||||
$(CC) $(CFLAGS) -std=c99 $(MESA_DEFS) $(INC_MESA) -o $@ $<
|
||||
|
||||
%.o : %.S Makefile
|
||||
$(CC) -c -save-temps -U_WIN32 -I $(MESA_SRC)/mesa -o $@ $<
|
||||
|
||||
|
395
contrib/sdk/sources/Mesa/src/mesa/Makefile
Normal file
395
contrib/sdk/sources/Mesa/src/mesa/Makefile
Normal file
@ -0,0 +1,395 @@
|
||||
CC = gcc
|
||||
|
||||
SRC_DIR:=$(SDK_DIR)/sources
|
||||
MESA_SRC:= $(SRC_DIR)/Mesa/src
|
||||
|
||||
CFLAGS_OPT = -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32 -U_MSC_VER -Os
|
||||
CFLAGS_OPT+= -fomit-frame-pointer -mno-ms-bitfields -save-temps
|
||||
CFLAGS = -c $(CFLAGS_OPT)
|
||||
|
||||
LD = ld
|
||||
LDFLAGS = -nostdlib -shared -s --image-base 0 -T $(SRC_DIR)/newlib/dll.lds -e _DllStartup
|
||||
|
||||
STRIP = $(PREFIX)strip
|
||||
|
||||
INC_MESA:= -I$(SRC_DIR)/newlib/include -I$(SRC_DIR)/Mesa/include
|
||||
INC_MESA+= -I./ -I$(MESA_SRC)/glsl -I$(MESA_SRC)/mesa -I$(MESA_SRC)/mapi
|
||||
INC_MESA+= -I$(SRC_DIR)/libdrm -I$(MESA_SRC) -I$(SRC_DIR)/expat/lib
|
||||
INC_I965:= -I$(SRC_DIR)/libdrm/intel -I$(SRC_DIR)/libdrm/include/drm -I$(MESA_SRC)/mesa/drivers/dri/common
|
||||
|
||||
LIBPATH:= -L$(SDK_DIR)/lib
|
||||
|
||||
LIBS:= -ldll -lglsl -lGL.dll -lsupc++ -lgcc_eh -ldrm.dll -lexpat -lc.dll -lgcc
|
||||
|
||||
MESA_DEFS= -DMESA_DLL -DBUILD_GL32 -DMAPI_MODE_UTIL -DMAPI_TABLE_NUM_STATIC=87 -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_SSE_ASM -DMAPI_TABLE_NUM_DYNAMIC=256
|
||||
MESA_DEFS+= -DPACKAGE_NAME=\"Mesa\" -DPACKAGE_VERSION=\"9.2.5\" -DPACKAGE_BUGREPORT=\"https://bugs.freedesktop.org/enter_bug.cgi\?product=Mesa\"
|
||||
MESA_DEFS+= -DPACKAGE_URL=\"\" -DPACKAGE=\"mesa\" -DVERSION=\"9.2.5\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1
|
||||
MESA_DEFS+= -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -D_GLAPI_DLL_EXPORTS
|
||||
|
||||
|
||||
MAIN_SRC = \
|
||||
drivers/common/driverfuncs.c \
|
||||
drivers/common/meta.c \
|
||||
drivers/dri/common/dri_util.c \
|
||||
drivers/dri/common/utils.c \
|
||||
drivers/dri/common/xmlconfig.c \
|
||||
main/accum.c \
|
||||
main/api_arrayelt.c \
|
||||
main/api_exec.c \
|
||||
main/api_loopback.c \
|
||||
main/api_validate.c \
|
||||
main/arbprogram.c \
|
||||
main/arrayobj.c \
|
||||
main/atifragshader.c \
|
||||
main/attrib.c \
|
||||
main/blend.c \
|
||||
main/bufferobj.c \
|
||||
main/buffers.c \
|
||||
main/clear.c \
|
||||
main/clip.c \
|
||||
main/colortab.c \
|
||||
main/condrender.c \
|
||||
main/context.c \
|
||||
main/convolve.c \
|
||||
main/cpuinfo.c \
|
||||
main/debug.c \
|
||||
main/depth.c \
|
||||
main/dlist.c \
|
||||
main/drawpix.c \
|
||||
main/drawtex.c \
|
||||
main/enable.c \
|
||||
main/enums.c \
|
||||
main/errors.c \
|
||||
main/es1_conversion.c \
|
||||
main/eval.c \
|
||||
main/execmem.c \
|
||||
main/extensions.c \
|
||||
main/ff_fragment_shader.cpp \
|
||||
main/fbobject.c \
|
||||
main/feedback.c \
|
||||
main/ffvertex_prog.c \
|
||||
main/fog.c \
|
||||
main/format_pack.c \
|
||||
main/format_unpack.c \
|
||||
main/formatquery.c \
|
||||
main/formats.c \
|
||||
main/framebuffer.c \
|
||||
main/get.c \
|
||||
main/getstring.c \
|
||||
main/glformats.c \
|
||||
main/hash.c \
|
||||
main/hash_table.c \
|
||||
main/hint.c \
|
||||
main/histogram.c \
|
||||
main/image.c \
|
||||
main/imports.c \
|
||||
main/light.c \
|
||||
main/lines.c \
|
||||
main/matrix.c \
|
||||
main/mipmap.c \
|
||||
main/mm.c \
|
||||
main/multisample.c \
|
||||
main/pack.c \
|
||||
main/pbo.c \
|
||||
main/pixel.c \
|
||||
main/pixelstore.c \
|
||||
main/pixeltransfer.c \
|
||||
main/points.c \
|
||||
main/polygon.c \
|
||||
main/querymatrix.c \
|
||||
main/queryobj.c \
|
||||
main/rastpos.c \
|
||||
main/readpix.c \
|
||||
main/remap.c \
|
||||
main/renderbuffer.c \
|
||||
main/samplerobj.c \
|
||||
main/scissor.c \
|
||||
main/set.c \
|
||||
main/shader_query.c \
|
||||
main/shaderapi.c \
|
||||
main/shaderobj.c \
|
||||
main/shared.c \
|
||||
main/state.c \
|
||||
main/stencil.c \
|
||||
main/syncobj.c \
|
||||
main/texcompress.c \
|
||||
main/texcompress_cpal.c \
|
||||
main/texcompress_etc.c \
|
||||
main/texcompress_fxt1.c \
|
||||
main/texcompress_rgtc.c \
|
||||
main/texcompress_s3tc.c \
|
||||
main/texenv.c \
|
||||
main/texformat.c \
|
||||
main/texgen.c \
|
||||
main/texgetimage.c \
|
||||
main/teximage.c \
|
||||
main/texobj.c \
|
||||
main/texparam.c \
|
||||
main/texstate.c \
|
||||
main/texstorage.c \
|
||||
main/texstore.c \
|
||||
main/texturebarrier.c \
|
||||
main/transformfeedback.c \
|
||||
main/uniform_query.cpp \
|
||||
main/uniforms.c \
|
||||
main/varray.c \
|
||||
main/version.c \
|
||||
main/viewport.c \
|
||||
main/vtxfmt.c \
|
||||
math/m_debug_clip.c \
|
||||
math/m_debug_norm.c \
|
||||
math/m_debug_xform.c \
|
||||
math/m_eval.c \
|
||||
math/m_matrix.c \
|
||||
math/m_translate.c \
|
||||
math/m_vector.c \
|
||||
math/m_xform.c \
|
||||
program/arbprogparse.c \
|
||||
program/ir_to_mesa.cpp \
|
||||
program/lex.yy.c \
|
||||
program/prog_cache.c \
|
||||
program/prog_execute.c \
|
||||
program/prog_hash_table.c \
|
||||
program/prog_instruction.c \
|
||||
program/prog_noise.c \
|
||||
program/prog_opt_constant_fold.c\
|
||||
program/prog_optimize.c \
|
||||
program/prog_parameter.c \
|
||||
program/prog_parameter_layout.c \
|
||||
program/prog_print.c \
|
||||
program/prog_statevars.c \
|
||||
program/program.c \
|
||||
program/program_parse.tab.c \
|
||||
program/program_parse_extra.c \
|
||||
program/programopt.c \
|
||||
program/register_allocate.c \
|
||||
program/sampler.cpp \
|
||||
program/string_to_uint_map.cpp \
|
||||
program/symbol_table.c \
|
||||
swrast/s_aaline.c \
|
||||
swrast/s_aatriangle.c \
|
||||
swrast/s_alpha.c \
|
||||
swrast/s_atifragshader.c \
|
||||
swrast/s_bitmap.c \
|
||||
swrast/s_blend.c \
|
||||
swrast/s_blit.c \
|
||||
swrast/s_clear.c \
|
||||
swrast/s_context.c \
|
||||
swrast/s_copypix.c \
|
||||
swrast/s_depth.c \
|
||||
swrast/s_drawpix.c \
|
||||
swrast/s_feedback.c \
|
||||
swrast/s_fog.c \
|
||||
swrast/s_fragprog.c \
|
||||
swrast/s_lines.c \
|
||||
swrast/s_logic.c \
|
||||
swrast/s_masking.c \
|
||||
swrast/s_points.c \
|
||||
swrast/s_renderbuffer.c \
|
||||
swrast/s_span.c \
|
||||
swrast/s_stencil.c \
|
||||
swrast/s_texcombine.c \
|
||||
swrast/s_texfetch.c \
|
||||
swrast/s_texfilter.c \
|
||||
swrast/s_texrender.c \
|
||||
swrast/s_texture.c \
|
||||
swrast/s_triangle.c \
|
||||
swrast/s_zoom.c \
|
||||
swrast_setup/ss_context.c \
|
||||
swrast_setup/ss_triangle.c \
|
||||
tnl/t_context.c \
|
||||
tnl/t_draw.c \
|
||||
tnl/t_pipeline.c \
|
||||
tnl/t_rasterpos.c \
|
||||
tnl/t_vb_fog.c \
|
||||
tnl/t_vb_light.c \
|
||||
tnl/t_vb_normals.c \
|
||||
tnl/t_vb_points.c \
|
||||
tnl/t_vb_program.c \
|
||||
tnl/t_vb_render.c \
|
||||
tnl/t_vb_texgen.c \
|
||||
tnl/t_vb_texmat.c \
|
||||
tnl/t_vb_vertex.c \
|
||||
tnl/t_vertex.c \
|
||||
tnl/t_vertex_generic.c \
|
||||
tnl/t_vertex_sse.c \
|
||||
tnl/t_vp_build.c \
|
||||
vbo/vbo_context.c \
|
||||
vbo/vbo_exec.c \
|
||||
vbo/vbo_exec_api.c \
|
||||
vbo/vbo_exec_array.c \
|
||||
vbo/vbo_exec_draw.c \
|
||||
vbo/vbo_exec_eval.c \
|
||||
vbo/vbo_noop.c \
|
||||
vbo/vbo_primitive_restart.c \
|
||||
vbo/vbo_rebase.c \
|
||||
vbo/vbo_save.c \
|
||||
vbo/vbo_save_api.c \
|
||||
vbo/vbo_save_draw.c \
|
||||
vbo/vbo_save_loopback.c \
|
||||
vbo/vbo_split.c \
|
||||
vbo/vbo_split_copy.c \
|
||||
vbo/vbo_split_inplace.c \
|
||||
x86/common_x86.c \
|
||||
x86/common_x86_asm.S \
|
||||
x86/mmx_blend.S \
|
||||
x86/read_rgba_span_x86.S \
|
||||
x86/rtasm/x86sse.c \
|
||||
x86/sse.c \
|
||||
x86/sse_normal.S \
|
||||
x86/sse_xform1.S \
|
||||
x86/sse_xform2.S \
|
||||
x86/sse_xform3.S \
|
||||
x86/sse_xform4.S \
|
||||
x86/x86_cliptest.S \
|
||||
x86/x86_xform.c \
|
||||
x86/x86_xform2.S \
|
||||
x86/x86_xform3.S \
|
||||
x86/x86_xform4.S \
|
||||
$(NULL)
|
||||
|
||||
I965_SRC = \
|
||||
drivers/dri/i965/intel_batchbuffer.c \
|
||||
drivers/dri/i965/intel_blit.c \
|
||||
drivers/dri/i965/intel_buffer_objects.c \
|
||||
drivers/dri/i965/intel_buffers.c \
|
||||
drivers/dri/i965/intel_context.c \
|
||||
drivers/dri/i965/intel_extensions.c \
|
||||
drivers/dri/i965/intel_fbo.c \
|
||||
drivers/dri/i965/intel_mipmap_tree.c \
|
||||
drivers/dri/i965/intel_regions.c \
|
||||
drivers/dri/i965/intel_resolve_map.c \
|
||||
drivers/dri/i965/intel_screen.c \
|
||||
drivers/dri/i965/intel_pixel.c \
|
||||
drivers/dri/i965/intel_pixel_bitmap.c \
|
||||
drivers/dri/i965/intel_pixel_copy.c \
|
||||
drivers/dri/i965/intel_pixel_draw.c \
|
||||
drivers/dri/i965/intel_pixel_read.c \
|
||||
drivers/dri/i965/intel_state.c \
|
||||
drivers/dri/i965/intel_syncobj.c \
|
||||
drivers/dri/i965/intel_tex.c \
|
||||
drivers/dri/i965/intel_tex_copy.c \
|
||||
drivers/dri/i965/intel_tex_image.c \
|
||||
drivers/dri/i965/intel_tex_subimage.c \
|
||||
drivers/dri/i965/intel_tex_validate.c \
|
||||
drivers/dri/i965/brw_blorp.cpp \
|
||||
drivers/dri/i965/brw_blorp_blit.cpp \
|
||||
drivers/dri/i965/brw_blorp_clear.cpp \
|
||||
drivers/dri/i965/brw_cc.c \
|
||||
drivers/dri/i965/brw_cfg.cpp \
|
||||
drivers/dri/i965/brw_clear.c \
|
||||
drivers/dri/i965/brw_clip.c \
|
||||
drivers/dri/i965/brw_clip_line.c \
|
||||
drivers/dri/i965/brw_clip_point.c \
|
||||
drivers/dri/i965/brw_clip_state.c \
|
||||
drivers/dri/i965/brw_clip_tri.c \
|
||||
drivers/dri/i965/brw_clip_unfilled.c \
|
||||
drivers/dri/i965/brw_clip_util.c \
|
||||
drivers/dri/i965/brw_context.c \
|
||||
drivers/dri/i965/brw_cubemap_normalize.cpp \
|
||||
drivers/dri/i965/brw_curbe.c \
|
||||
drivers/dri/i965/brw_disasm.c \
|
||||
drivers/dri/i965/brw_draw.c \
|
||||
drivers/dri/i965/brw_draw_upload.c \
|
||||
drivers/dri/i965/brw_eu.c \
|
||||
drivers/dri/i965/brw_eu_compact.c \
|
||||
drivers/dri/i965/brw_eu_emit.c \
|
||||
drivers/dri/i965/brw_eu_util.c \
|
||||
drivers/dri/i965/brw_fs.cpp \
|
||||
drivers/dri/i965/brw_fs_channel_expressions.cpp \
|
||||
drivers/dri/i965/brw_fs_copy_propagation.cpp \
|
||||
drivers/dri/i965/brw_fs_cse.cpp \
|
||||
drivers/dri/i965/brw_fs_emit.cpp \
|
||||
drivers/dri/i965/brw_fs_fp.cpp \
|
||||
drivers/dri/i965/brw_fs_live_variables.cpp \
|
||||
drivers/dri/i965/brw_fs_reg_allocate.cpp \
|
||||
drivers/dri/i965/brw_fs_vector_splitting.cpp \
|
||||
drivers/dri/i965/brw_fs_visitor.cpp \
|
||||
drivers/dri/i965/brw_gs.c \
|
||||
drivers/dri/i965/brw_gs_emit.c \
|
||||
drivers/dri/i965/brw_gs_state.c \
|
||||
drivers/dri/i965/brw_lower_texture_gradients.cpp \
|
||||
drivers/dri/i965/brw_misc_state.c \
|
||||
drivers/dri/i965/brw_program.c \
|
||||
drivers/dri/i965/brw_primitive_restart.c\
|
||||
drivers/dri/i965/brw_queryobj.c \
|
||||
drivers/dri/i965/brw_schedule_instructions.cpp \
|
||||
drivers/dri/i965/brw_sf.c \
|
||||
drivers/dri/i965/brw_sf_emit.c \
|
||||
drivers/dri/i965/brw_sf_state.c \
|
||||
drivers/dri/i965/brw_shader.cpp \
|
||||
drivers/dri/i965/brw_state_batch.c \
|
||||
drivers/dri/i965/brw_state_cache.c \
|
||||
drivers/dri/i965/brw_state_dump.c \
|
||||
drivers/dri/i965/brw_state_upload.c \
|
||||
drivers/dri/i965/brw_surface_formats.c \
|
||||
drivers/dri/i965/brw_tex.c \
|
||||
drivers/dri/i965/brw_tex_layout.c \
|
||||
drivers/dri/i965/brw_urb.c \
|
||||
drivers/dri/i965/brw_util.c \
|
||||
drivers/dri/i965/brw_vec4.cpp \
|
||||
drivers/dri/i965/brw_vec4_copy_propagation.cpp \
|
||||
drivers/dri/i965/brw_vec4_emit.cpp \
|
||||
drivers/dri/i965/brw_vec4_live_variables.cpp \
|
||||
drivers/dri/i965/brw_vec4_reg_allocate.cpp \
|
||||
drivers/dri/i965/brw_vec4_visitor.cpp \
|
||||
drivers/dri/i965/brw_vec4_vp.cpp \
|
||||
drivers/dri/i965/brw_vs.c \
|
||||
drivers/dri/i965/brw_vs_state.c \
|
||||
drivers/dri/i965/brw_vs_surface_state.c \
|
||||
drivers/dri/i965/brw_vtbl.c \
|
||||
drivers/dri/i965/brw_wm.c \
|
||||
drivers/dri/i965/brw_wm_iz.cpp \
|
||||
drivers/dri/i965/brw_wm_sampler_state.c \
|
||||
drivers/dri/i965/brw_wm_state.c \
|
||||
drivers/dri/i965/brw_wm_surface_state.c \
|
||||
drivers/dri/i965/gen6_blorp.cpp \
|
||||
drivers/dri/i965/gen6_cc.c \
|
||||
drivers/dri/i965/gen6_clip_state.c \
|
||||
drivers/dri/i965/gen6_depthstencil.c \
|
||||
drivers/dri/i965/gen6_gs_state.c \
|
||||
drivers/dri/i965/gen6_multisample_state.c \
|
||||
drivers/dri/i965/gen6_queryobj.c \
|
||||
drivers/dri/i965/gen6_sampler_state.c \
|
||||
drivers/dri/i965/gen6_scissor_state.c \
|
||||
drivers/dri/i965/gen6_sf_state.c \
|
||||
drivers/dri/i965/gen6_sol.c \
|
||||
drivers/dri/i965/gen6_urb.c \
|
||||
drivers/dri/i965/gen6_viewport_state.c \
|
||||
drivers/dri/i965/gen6_vs_state.c \
|
||||
drivers/dri/i965/gen6_wm_state.c \
|
||||
drivers/dri/i965/gen7_blorp.cpp \
|
||||
drivers/dri/i965/gen7_clip_state.c \
|
||||
drivers/dri/i965/gen7_disable.c \
|
||||
drivers/dri/i965/gen7_misc_state.c \
|
||||
drivers/dri/i965/gen7_sampler_state.c \
|
||||
drivers/dri/i965/gen7_sf_state.c \
|
||||
drivers/dri/i965/gen7_sol_state.c \
|
||||
drivers/dri/i965/gen7_urb.c \
|
||||
drivers/dri/i965/gen7_viewport_state.c \
|
||||
drivers/dri/i965/gen7_vs_state.c \
|
||||
drivers/dri/i965/gen7_wm_state.c \
|
||||
drivers/dri/i965/gen7_wm_surface_state.c\
|
||||
$(NULL)
|
||||
|
||||
MESA_OBJS = $(patsubst %.c, %.o, $(patsubst %.S, %.o, $(patsubst %.cpp, %.o, $(MAIN_SRC))))
|
||||
I965_OBJS = $(patsubst %.c, %.o, $(patsubst %.cpp, %.o, $(I965_SRC)))
|
||||
|
||||
# targets
|
||||
|
||||
all: i965_dri.drv
|
||||
|
||||
i965_dri.drv: $(I965_OBJS) $(MESA_OBJS) dri.def Makefile
|
||||
$(LD) $(LDFLAGS) $(LIBPATH) -o $@ $(I965_OBJS) $(MESA_OBJS) dri.def $(LIBS)
|
||||
$(STRIP) $@
|
||||
mv -f $@ $(SDK_DIR)/bin
|
||||
|
||||
%.o : %.c Makefile
|
||||
$(CC) $(CFLAGS) -std=c99 $(MESA_DEFS) $(INC_MESA) $(INC_I965) -o $@ $<
|
||||
|
||||
%.o : %.S Makefile
|
||||
$(CC) -c -save-temps -U_WIN32 -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_SSE_ASM -I $(MESA_SRC)/mesa -o $@ $<
|
||||
|
||||
%.o : %.cpp Makefile
|
||||
$(CC) $(CFLAGS) $(MESA_DEFS) $(INC_MESA) $(INC_I965) -o $@ $<
|
||||
|
4
contrib/sdk/sources/Mesa/src/mesa/dri.def
Normal file
4
contrib/sdk/sources/Mesa/src/mesa/dri.def
Normal file
@ -0,0 +1,4 @@
|
||||
VERSION 6.5
|
||||
EXPORTS
|
||||
DllStartup
|
||||
__driDriverExtensions
|
@ -66,6 +66,7 @@ intelGetString(struct gl_context * ctx, GLenum name)
|
||||
const struct brw_context *const brw = brw_context(ctx);
|
||||
const char *chipset;
|
||||
static char buffer[128];
|
||||
static char driver_name[] = "i965_dri.drv";
|
||||
|
||||
switch (name) {
|
||||
case GL_VENDOR:
|
||||
@ -85,6 +86,9 @@ intelGetString(struct gl_context * ctx, GLenum name)
|
||||
(void) driGetRendererString(buffer, chipset, 0);
|
||||
return (GLubyte *) buffer;
|
||||
|
||||
case 0x1F04: /* GL_DRIVER_NAME */
|
||||
return (GLubyte*)driver_name;
|
||||
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
|
@ -1189,6 +1189,8 @@ __DRIconfig **intelInitScreen2(__DRIscreen *psp)
|
||||
{
|
||||
struct intel_screen *intelScreen;
|
||||
|
||||
printf("mesa-9.2.5-i965_dri build %s %s\n", __DATE__, __TIME__);
|
||||
|
||||
if (psp->dri2.loader->base.version <= 2 ||
|
||||
psp->dri2.loader->getBuffersWithFormat == NULL) {
|
||||
fprintf(stderr,
|
||||
|
@ -46,9 +46,9 @@
|
||||
SEG_TEXT
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_x86_has_cpuid)
|
||||
HIDDEN(__mesa_x86_has_cpuid)
|
||||
GLNAME(__mesa_x86_has_cpuid):
|
||||
GLOBL GLNAME(_mesa_x86_has_cpuid)
|
||||
HIDDEN(_mesa_x86_has_cpuid)
|
||||
GLNAME(_mesa_x86_has_cpuid):
|
||||
|
||||
/* Test for the CPUID command. If the ID Flag bit in EFLAGS
|
||||
* (bit 21) is writable, the CPUID command is present */
|
||||
@ -70,9 +70,9 @@ GLNAME(__mesa_x86_has_cpuid):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_x86_cpuid)
|
||||
HIDDEN(__mesa_x86_cpuid)
|
||||
GLNAME(__mesa_x86_cpuid):
|
||||
GLOBL GLNAME(_mesa_x86_cpuid)
|
||||
HIDDEN(_mesa_x86_cpuid)
|
||||
GLNAME(_mesa_x86_cpuid):
|
||||
|
||||
MOV_L (REGOFF(4, ESP), EAX) /* cpuid op */
|
||||
PUSH_L (EDI)
|
||||
@ -94,9 +94,9 @@ GLNAME(__mesa_x86_cpuid):
|
||||
RET
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_x86_cpuid_eax)
|
||||
HIDDEN(__mesa_x86_cpuid_eax)
|
||||
GLNAME(__mesa_x86_cpuid_eax):
|
||||
GLOBL GLNAME(_mesa_x86_cpuid_eax)
|
||||
HIDDEN(_mesa_x86_cpuid_eax)
|
||||
GLNAME(_mesa_x86_cpuid_eax):
|
||||
|
||||
MOV_L (REGOFF(4, ESP), EAX) /* cpuid op */
|
||||
PUSH_L (EBX)
|
||||
@ -107,9 +107,9 @@ GLNAME(__mesa_x86_cpuid_eax):
|
||||
RET
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_x86_cpuid_ebx)
|
||||
HIDDEN(__mesa_x86_cpuid_ebx)
|
||||
GLNAME(__mesa_x86_cpuid_ebx):
|
||||
GLOBL GLNAME(_mesa_x86_cpuid_ebx)
|
||||
HIDDEN(_mesa_x86_cpuid_ebx)
|
||||
GLNAME(_mesa_x86_cpuid_ebx):
|
||||
|
||||
MOV_L (REGOFF(4, ESP), EAX) /* cpuid op */
|
||||
PUSH_L (EBX)
|
||||
@ -121,9 +121,9 @@ GLNAME(__mesa_x86_cpuid_ebx):
|
||||
RET
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_x86_cpuid_ecx)
|
||||
HIDDEN(__mesa_x86_cpuid_ecx)
|
||||
GLNAME(__mesa_x86_cpuid_ecx):
|
||||
GLOBL GLNAME(_mesa_x86_cpuid_ecx)
|
||||
HIDDEN(_mesa_x86_cpuid_ecx)
|
||||
GLNAME(_mesa_x86_cpuid_ecx):
|
||||
|
||||
MOV_L (REGOFF(4, ESP), EAX) /* cpuid op */
|
||||
PUSH_L (EBX)
|
||||
@ -135,9 +135,9 @@ GLNAME(__mesa_x86_cpuid_ecx):
|
||||
RET
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_x86_cpuid_edx)
|
||||
HIDDEN(__mesa_x86_cpuid_edx)
|
||||
GLNAME(__mesa_x86_cpuid_edx):
|
||||
GLOBL GLNAME(_mesa_x86_cpuid_edx)
|
||||
HIDDEN(_mesa_x86_cpuid_edx)
|
||||
GLNAME(_mesa_x86_cpuid_edx):
|
||||
|
||||
MOV_L (REGOFF(4, ESP), EAX) /* cpuid op */
|
||||
PUSH_L (EBX)
|
||||
@ -161,9 +161,9 @@ GLNAME(__mesa_x86_cpuid_edx):
|
||||
* See freedesktop.org bug #1709 for more info.
|
||||
*/
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME( __mesa_test_os_sse_support )
|
||||
HIDDEN(__mesa_test_os_sse_support)
|
||||
GLNAME( __mesa_test_os_sse_support ):
|
||||
GLOBL GLNAME( _mesa_test_os_sse_support )
|
||||
HIDDEN(_mesa_test_os_sse_support)
|
||||
GLNAME( _mesa_test_os_sse_support ):
|
||||
|
||||
XORPS ( XMM0, XMM0 )
|
||||
|
||||
@ -176,9 +176,9 @@ GLNAME( __mesa_test_os_sse_support ):
|
||||
* otherwise this could kill the client application.
|
||||
*/
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME( __mesa_test_os_sse_exception_support )
|
||||
HIDDEN(__mesa_test_os_sse_exception_support)
|
||||
GLNAME( __mesa_test_os_sse_exception_support ):
|
||||
GLOBL GLNAME( _mesa_test_os_sse_exception_support )
|
||||
HIDDEN(_mesa_test_os_sse_exception_support)
|
||||
GLNAME( _mesa_test_os_sse_exception_support ):
|
||||
|
||||
PUSH_L ( EBP )
|
||||
MOV_L ( ESP, EBP )
|
||||
|
@ -12,9 +12,9 @@
|
||||
*
|
||||
*/
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( TAG(__mesa_mmx_blend) )
|
||||
HIDDEN( TAG(__mesa_mmx_blend) )
|
||||
GLNAME( TAG(__mesa_mmx_blend) ):
|
||||
GLOBL GLNAME( TAG(_mesa_mmx_blend) )
|
||||
HIDDEN( TAG(_mesa_mmx_blend) )
|
||||
GLNAME( TAG(_mesa_mmx_blend) ):
|
||||
|
||||
PUSH_L ( EBP )
|
||||
MOV_L ( ESP, EBP )
|
||||
|
@ -44,9 +44,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME(__mesa_sse_transform_rescale_normals_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_rescale_normals_no_rot)
|
||||
GLNAME(__mesa_sse_transform_rescale_normals_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_rescale_normals_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_rescale_normals_no_rot)
|
||||
GLNAME(_mesa_sse_transform_rescale_normals_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -106,9 +106,9 @@ LLBL(K_G3TRNNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME(__mesa_sse_transform_rescale_normals)
|
||||
HIDDEN(__mesa_sse_transform_rescale_normals)
|
||||
GLNAME(__mesa_sse_transform_rescale_normals):
|
||||
GLOBL GLNAME(_mesa_sse_transform_rescale_normals)
|
||||
HIDDEN(_mesa_sse_transform_rescale_normals)
|
||||
GLNAME(_mesa_sse_transform_rescale_normals):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -199,9 +199,9 @@ LLBL(K_G3TRNR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME(__mesa_sse_transform_normals_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_normals_no_rot)
|
||||
GLNAME(__mesa_sse_transform_normals_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_normals_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_normals_no_rot)
|
||||
GLNAME(_mesa_sse_transform_normals_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
|
@ -43,9 +43,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_general)
|
||||
HIDDEN( __mesa_sse_transform_points1_general )
|
||||
GLNAME( __mesa_sse_transform_points1_general ):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_general)
|
||||
HIDDEN( _mesa_sse_transform_points1_general )
|
||||
GLNAME( _mesa_sse_transform_points1_general ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -100,9 +100,9 @@ LLBL(K_GTP1GR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_identity)
|
||||
HIDDEN(__mesa_sse_transform_points1_identity)
|
||||
GLNAME( __mesa_sse_transform_points1_identity ):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_identity)
|
||||
HIDDEN(_mesa_sse_transform_points1_identity)
|
||||
GLNAME( _mesa_sse_transform_points1_identity ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -152,9 +152,9 @@ LLBL(K_GTP1IR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_3d_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_points1_3d_no_rot)
|
||||
GLNAME(__mesa_sse_transform_points1_3d_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_3d_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_points1_3d_no_rot)
|
||||
GLNAME(_mesa_sse_transform_points1_3d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -213,9 +213,9 @@ LLBL(K_GTP13DNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_perspective)
|
||||
HIDDEN(__mesa_sse_transform_points1_perspective)
|
||||
GLNAME(__mesa_sse_transform_points1_perspective):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_perspective)
|
||||
HIDDEN(_mesa_sse_transform_points1_perspective)
|
||||
GLNAME(_mesa_sse_transform_points1_perspective):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -272,9 +272,9 @@ LLBL(K_GTP13PR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_2d)
|
||||
HIDDEN(__mesa_sse_transform_points1_2d)
|
||||
GLNAME(__mesa_sse_transform_points1_2d):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_2d)
|
||||
HIDDEN(_mesa_sse_transform_points1_2d)
|
||||
GLNAME(_mesa_sse_transform_points1_2d):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -327,9 +327,9 @@ LLBL(K_GTP13P2DR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_2d_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_points1_2d_no_rot)
|
||||
GLNAME(__mesa_sse_transform_points1_2d_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_2d_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_points1_2d_no_rot)
|
||||
GLNAME(_mesa_sse_transform_points1_2d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -384,9 +384,9 @@ LLBL(K_GTP13P2DNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points1_3d)
|
||||
HIDDEN(__mesa_sse_transform_points1_3d)
|
||||
GLNAME(__mesa_sse_transform_points1_3d):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points1_3d)
|
||||
HIDDEN(_mesa_sse_transform_points1_3d)
|
||||
GLNAME(_mesa_sse_transform_points1_3d):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
|
@ -43,9 +43,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_general)
|
||||
HIDDEN (__mesa_sse_transform_points2_general)
|
||||
GLNAME( __mesa_sse_transform_points2_general ):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_general)
|
||||
HIDDEN (_mesa_sse_transform_points2_general)
|
||||
GLNAME( _mesa_sse_transform_points2_general ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -104,9 +104,9 @@ LLBL(K_GTP2GR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_identity)
|
||||
HIDDEN(__mesa_sse_transform_points2_identity)
|
||||
GLNAME( __mesa_sse_transform_points2_identity ):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_identity)
|
||||
HIDDEN(_mesa_sse_transform_points2_identity)
|
||||
GLNAME( _mesa_sse_transform_points2_identity ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -157,9 +157,9 @@ LLBL(K_GTP2IR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_3d_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_points2_3d_no_rot)
|
||||
GLNAME(__mesa_sse_transform_points2_3d_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_3d_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_points2_3d_no_rot)
|
||||
GLNAME(_mesa_sse_transform_points2_3d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -218,9 +218,9 @@ LLBL(K_GTP23DNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_perspective)
|
||||
HIDDEN(__mesa_sse_transform_points2_perspective)
|
||||
GLNAME(__mesa_sse_transform_points2_perspective):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_perspective)
|
||||
HIDDEN(_mesa_sse_transform_points2_perspective)
|
||||
GLNAME(_mesa_sse_transform_points2_perspective):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -277,9 +277,9 @@ LLBL(K_GTP23PR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_2d)
|
||||
HIDDEN(__mesa_sse_transform_points2_2d)
|
||||
GLNAME(__mesa_sse_transform_points2_2d):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_2d)
|
||||
HIDDEN(_mesa_sse_transform_points2_2d)
|
||||
GLNAME(_mesa_sse_transform_points2_2d):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -340,9 +340,9 @@ LLBL(K_GTP23P2DR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_2d_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_points2_2d_no_rot)
|
||||
GLNAME(__mesa_sse_transform_points2_2d_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_2d_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_points2_2d_no_rot)
|
||||
GLNAME(_mesa_sse_transform_points2_2d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -397,9 +397,9 @@ LLBL(K_GTP23P2DNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points2_3d)
|
||||
HIDDEN(__mesa_sse_transform_points2_3d)
|
||||
GLNAME(__mesa_sse_transform_points2_3d):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points2_3d)
|
||||
HIDDEN(_mesa_sse_transform_points2_3d)
|
||||
GLNAME(_mesa_sse_transform_points2_3d):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
|
@ -43,9 +43,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_general)
|
||||
HIDDEN(__mesa_sse_transform_points3_general)
|
||||
GLNAME( __mesa_sse_transform_points3_general ):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_general)
|
||||
HIDDEN(_mesa_sse_transform_points3_general)
|
||||
GLNAME( _mesa_sse_transform_points3_general ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -113,9 +113,9 @@ LLBL(K_GTPGR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_identity)
|
||||
HIDDEN(__mesa_sse_transform_points3_identity)
|
||||
GLNAME( __mesa_sse_transform_points3_identity ):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_identity)
|
||||
HIDDEN(_mesa_sse_transform_points3_identity)
|
||||
GLNAME( _mesa_sse_transform_points3_identity ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -168,9 +168,9 @@ LLBL(K_GTPIR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_3d_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_points3_3d_no_rot)
|
||||
GLNAME(__mesa_sse_transform_points3_3d_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_3d_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_points3_3d_no_rot)
|
||||
GLNAME(_mesa_sse_transform_points3_3d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -236,9 +236,9 @@ LLBL(K_GTP3DNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_perspective)
|
||||
HIDDEN(__mesa_sse_transform_points3_perspective)
|
||||
GLNAME(__mesa_sse_transform_points3_perspective):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_perspective)
|
||||
HIDDEN(_mesa_sse_transform_points3_perspective)
|
||||
GLNAME(_mesa_sse_transform_points3_perspective):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L ( ESI )
|
||||
@ -309,9 +309,9 @@ LLBL(K_GTP3PR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_2d)
|
||||
HIDDEN(__mesa_sse_transform_points3_2d)
|
||||
GLNAME(__mesa_sse_transform_points3_2d):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_2d)
|
||||
HIDDEN(_mesa_sse_transform_points3_2d)
|
||||
GLNAME(_mesa_sse_transform_points3_2d):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -374,9 +374,9 @@ LLBL(K_GTP3P2DR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_2d_no_rot)
|
||||
HIDDEN(__mesa_sse_transform_points3_2d_no_rot)
|
||||
GLNAME(__mesa_sse_transform_points3_2d_no_rot):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_2d_no_rot)
|
||||
HIDDEN(_mesa_sse_transform_points3_2d_no_rot)
|
||||
GLNAME(_mesa_sse_transform_points3_2d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -435,9 +435,9 @@ LLBL(K_GTP3P2DNRR_finish):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME(__mesa_sse_transform_points3_3d)
|
||||
HIDDEN(__mesa_sse_transform_points3_3d)
|
||||
GLNAME(__mesa_sse_transform_points3_3d):
|
||||
GLOBL GLNAME(_mesa_sse_transform_points3_3d)
|
||||
HIDDEN(_mesa_sse_transform_points3_3d)
|
||||
GLNAME(_mesa_sse_transform_points3_3d):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
|
@ -40,9 +40,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_sse_transform_points4_general )
|
||||
HIDDEN(__mesa_sse_transform_points4_general)
|
||||
GLNAME( __mesa_sse_transform_points4_general ):
|
||||
GLOBL GLNAME( _mesa_sse_transform_points4_general )
|
||||
HIDDEN(_mesa_sse_transform_points4_general)
|
||||
GLNAME( _mesa_sse_transform_points4_general ):
|
||||
|
||||
PUSH_L( ESI )
|
||||
PUSH_L( EDI )
|
||||
@ -112,9 +112,9 @@ LLBL( sse_general_done ):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME( __mesa_sse_transform_points4_3d )
|
||||
HIDDEN(__mesa_sse_transform_points4_3d)
|
||||
GLNAME( __mesa_sse_transform_points4_3d ):
|
||||
GLOBL GLNAME( _mesa_sse_transform_points4_3d )
|
||||
HIDDEN(_mesa_sse_transform_points4_3d)
|
||||
GLNAME( _mesa_sse_transform_points4_3d ):
|
||||
|
||||
PUSH_L( ESI )
|
||||
PUSH_L( EDI )
|
||||
|
@ -100,9 +100,9 @@ clip_table:
|
||||
#endif
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_cliptest_points4 )
|
||||
HIDDEN(__mesa_x86_cliptest_points4)
|
||||
GLNAME( __mesa_x86_cliptest_points4 ):
|
||||
GLOBL GLNAME( _mesa_x86_cliptest_points4 )
|
||||
HIDDEN(_mesa_x86_cliptest_points4)
|
||||
GLNAME( _mesa_x86_cliptest_points4 ):
|
||||
|
||||
#ifdef ELFPIC
|
||||
#define FRAME_OFFSET 20
|
||||
@ -275,9 +275,9 @@ LLBL(ctp4_finish):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_cliptest_points4_np )
|
||||
HIDDEN(__mesa_x86_cliptest_points4_np)
|
||||
GLNAME( __mesa_x86_cliptest_points4_np ):
|
||||
GLOBL GLNAME( _mesa_x86_cliptest_points4_np )
|
||||
HIDDEN(_mesa_x86_cliptest_points4_np)
|
||||
GLNAME( _mesa_x86_cliptest_points4_np ):
|
||||
|
||||
#ifdef ELFPIC
|
||||
#define FRAME_OFFSET 20
|
||||
|
@ -65,9 +65,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_general )
|
||||
HIDDEN(__mesa_x86_transform_points2_general)
|
||||
GLNAME( __mesa_x86_transform_points2_general ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_general )
|
||||
HIDDEN(_mesa_x86_transform_points2_general)
|
||||
GLNAME( _mesa_x86_transform_points2_general ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -156,9 +156,9 @@ LLBL(x86_p2_gr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_perspective )
|
||||
HIDDEN(__mesa_x86_transform_points2_perspective)
|
||||
GLNAME( __mesa_x86_transform_points2_perspective ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_perspective )
|
||||
HIDDEN(_mesa_x86_transform_points2_perspective)
|
||||
GLNAME( _mesa_x86_transform_points2_perspective ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -222,9 +222,9 @@ LLBL(x86_p2_pr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_3d )
|
||||
HIDDEN(__mesa_x86_transform_points2_3d)
|
||||
GLNAME( __mesa_x86_transform_points2_3d ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_3d )
|
||||
HIDDEN(_mesa_x86_transform_points2_3d)
|
||||
GLNAME( _mesa_x86_transform_points2_3d ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -304,9 +304,9 @@ LLBL(x86_p2_3dr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_3d_no_rot )
|
||||
HIDDEN(__mesa_x86_transform_points2_3d_no_rot)
|
||||
GLNAME( __mesa_x86_transform_points2_3d_no_rot ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_3d_no_rot )
|
||||
HIDDEN(_mesa_x86_transform_points2_3d_no_rot)
|
||||
GLNAME( _mesa_x86_transform_points2_3d_no_rot ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -374,9 +374,9 @@ LLBL(x86_p2_3dnrr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_2d )
|
||||
HIDDEN(__mesa_x86_transform_points2_2d)
|
||||
GLNAME( __mesa_x86_transform_points2_2d ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_2d )
|
||||
HIDDEN(_mesa_x86_transform_points2_2d)
|
||||
GLNAME( _mesa_x86_transform_points2_2d ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -447,9 +447,9 @@ LLBL(x86_p2_2dr_done):
|
||||
|
||||
|
||||
ALIGNTEXT4
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_2d_no_rot )
|
||||
HIDDEN(__mesa_x86_transform_points2_2d_no_rot)
|
||||
GLNAME( __mesa_x86_transform_points2_2d_no_rot ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_2d_no_rot )
|
||||
HIDDEN(_mesa_x86_transform_points2_2d_no_rot)
|
||||
GLNAME( _mesa_x86_transform_points2_2d_no_rot ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -512,9 +512,9 @@ LLBL(x86_p2_2dnrr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points2_identity )
|
||||
HIDDEN(__mesa_x86_transform_points2_identity)
|
||||
GLNAME( __mesa_x86_transform_points2_identity ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points2_identity )
|
||||
HIDDEN(_mesa_x86_transform_points2_identity)
|
||||
GLNAME( _mesa_x86_transform_points2_identity ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
|
@ -65,9 +65,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_general )
|
||||
HIDDEN(__mesa_x86_transform_points3_general)
|
||||
GLNAME( __mesa_x86_transform_points3_general ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_general )
|
||||
HIDDEN(_mesa_x86_transform_points3_general)
|
||||
GLNAME( _mesa_x86_transform_points3_general ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -172,9 +172,9 @@ LLBL(x86_p3_gr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_perspective )
|
||||
HIDDEN(__mesa_x86_transform_points3_perspective)
|
||||
GLNAME( __mesa_x86_transform_points3_perspective ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_perspective )
|
||||
HIDDEN(_mesa_x86_transform_points3_perspective)
|
||||
GLNAME( _mesa_x86_transform_points3_perspective ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -253,9 +253,9 @@ LLBL(x86_p3_pr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_3d )
|
||||
HIDDEN(__mesa_x86_transform_points3_3d)
|
||||
GLNAME( __mesa_x86_transform_points3_3d ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_3d )
|
||||
HIDDEN(_mesa_x86_transform_points3_3d)
|
||||
GLNAME( _mesa_x86_transform_points3_3d ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -347,9 +347,9 @@ LLBL(x86_p3_3dr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_3d_no_rot )
|
||||
HIDDEN(__mesa_x86_transform_points3_3d_no_rot)
|
||||
GLNAME( __mesa_x86_transform_points3_3d_no_rot ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_3d_no_rot )
|
||||
HIDDEN(_mesa_x86_transform_points3_3d_no_rot)
|
||||
GLNAME( _mesa_x86_transform_points3_3d_no_rot ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -420,9 +420,9 @@ LLBL(x86_p3_3dnrr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_2d )
|
||||
HIDDEN(__mesa_x86_transform_points3_2d)
|
||||
GLNAME( __mesa_x86_transform_points3_2d ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_2d )
|
||||
HIDDEN(_mesa_x86_transform_points3_2d)
|
||||
GLNAME( _mesa_x86_transform_points3_2d ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -498,9 +498,9 @@ LLBL(x86_p3_2dr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_2d_no_rot )
|
||||
HIDDEN(__mesa_x86_transform_points3_2d_no_rot)
|
||||
GLNAME( __mesa_x86_transform_points3_2d_no_rot ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_2d_no_rot )
|
||||
HIDDEN(_mesa_x86_transform_points3_2d_no_rot)
|
||||
GLNAME( _mesa_x86_transform_points3_2d_no_rot ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -569,9 +569,9 @@ LLBL(x86_p3_2dnrr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points3_identity )
|
||||
HIDDEN(__mesa_x86_transform_points3_identity)
|
||||
GLNAME(__mesa_x86_transform_points3_identity ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points3_identity )
|
||||
HIDDEN(_mesa_x86_transform_points3_identity)
|
||||
GLNAME(_mesa_x86_transform_points3_identity ):
|
||||
|
||||
#define FRAME_OFFSET 16
|
||||
PUSH_L( ESI )
|
||||
|
@ -65,9 +65,9 @@
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points4_general )
|
||||
HIDDEN(__mesa_x86_transform_points4_general)
|
||||
GLNAME( __mesa_x86_transform_points4_general ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points4_general )
|
||||
HIDDEN(_mesa_x86_transform_points4_general)
|
||||
GLNAME( _mesa_x86_transform_points4_general ):
|
||||
|
||||
#define FRAME_OFFSET 8
|
||||
PUSH_L( ESI )
|
||||
@ -179,9 +179,9 @@ LLBL(x86_p4_gr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points4_perspective )
|
||||
HIDDEN(__mesa_x86_transform_points4_perspective)
|
||||
GLNAME( __mesa_x86_transform_points4_perspective ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points4_perspective )
|
||||
HIDDEN(_mesa_x86_transform_points4_perspective)
|
||||
GLNAME( _mesa_x86_transform_points4_perspective ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -262,9 +262,9 @@ LLBL(x86_p4_pr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points4_3d )
|
||||
HIDDEN(__mesa_x86_transform_points4_3d)
|
||||
GLNAME( __mesa_x86_transform_points4_3d ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points4_3d )
|
||||
HIDDEN(_mesa_x86_transform_points4_3d)
|
||||
GLNAME( _mesa_x86_transform_points4_3d ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -365,9 +365,9 @@ LLBL(x86_p4_3dr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME(__mesa_x86_transform_points4_3d_no_rot)
|
||||
HIDDEN(__mesa_x86_transform_points4_3d_no_rot)
|
||||
GLNAME(__mesa_x86_transform_points4_3d_no_rot):
|
||||
GLOBL GLNAME(_mesa_x86_transform_points4_3d_no_rot)
|
||||
HIDDEN(_mesa_x86_transform_points4_3d_no_rot)
|
||||
GLNAME(_mesa_x86_transform_points4_3d_no_rot):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
@ -446,9 +446,9 @@ LLBL(x86_p4_3dnrr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points4_2d )
|
||||
HIDDEN(__mesa_x86_transform_points4_2d)
|
||||
GLNAME( __mesa_x86_transform_points4_2d ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points4_2d )
|
||||
HIDDEN(_mesa_x86_transform_points4_2d)
|
||||
GLNAME( _mesa_x86_transform_points4_2d ):
|
||||
|
||||
#define FRAME_OFFSET 16
|
||||
PUSH_L( ESI )
|
||||
@ -532,9 +532,9 @@ LLBL(x86_p4_2dr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points4_2d_no_rot )
|
||||
HIDDEN(__mesa_x86_transform_points4_2d_no_rot)
|
||||
GLNAME( __mesa_x86_transform_points4_2d_no_rot ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points4_2d_no_rot )
|
||||
HIDDEN(_mesa_x86_transform_points4_2d_no_rot)
|
||||
GLNAME( _mesa_x86_transform_points4_2d_no_rot ):
|
||||
|
||||
#define FRAME_OFFSET 16
|
||||
PUSH_L( ESI )
|
||||
@ -610,9 +610,9 @@ LLBL(x86_p4_2dnrr_done):
|
||||
|
||||
|
||||
ALIGNTEXT16
|
||||
GLOBL GLNAME( __mesa_x86_transform_points4_identity )
|
||||
HIDDEN(__mesa_x86_transform_points4_identity)
|
||||
GLNAME( __mesa_x86_transform_points4_identity ):
|
||||
GLOBL GLNAME( _mesa_x86_transform_points4_identity )
|
||||
HIDDEN(_mesa_x86_transform_points4_identity)
|
||||
GLNAME( _mesa_x86_transform_points4_identity ):
|
||||
|
||||
#define FRAME_OFFSET 12
|
||||
PUSH_L( ESI )
|
||||
|
Loading…
Reference in New Issue
Block a user