From 2e73a5e69f0227f15c6049ef805a9b8c20166e2b Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Wed, 21 Jul 2004 14:38:29 +0000 Subject: new goom2k4-dev18 includes almost all of my warning fixes (the goom team is quite fast in applying my patches :) ) some files are still slightly patched from the release version, but I will get this sorted out so we will soon use a completely unmodified version of goom it compiles almost warningless now (the remaining warnings are introduced by lex/yacc and I plan to simply ignore them) the Makefile.am distclean-hack is also obsolete now, since the offending files have been renamed CVS patchset: 6828 CVS date: 2004/07/21 14:38:29 --- src/post/goom/plugin_info.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'src/post/goom/plugin_info.c') diff --git a/src/post/goom/plugin_info.c b/src/post/goom/plugin_info.c index 31627f96f..c6d57dc5e 100644 --- a/src/post/goom/plugin_info.c +++ b/src/post/goom/plugin_info.c @@ -1,4 +1,5 @@ #include "goom_plugin_info.h" +#include "goom_fx.h" #include "cpu_info.h" #include "default_scripts.h" #include "drawmethods.h" @@ -15,24 +16,11 @@ #ifdef CPU_X86 -/* TODO: PUT THIS IN SEPARATE HEADERS */ -extern int xmmx_supported (); -extern int mmx_supported (); -extern void draw_line_mmx (Pixel *data, int x1, int y1, int x2, int y2, int col, int screenx, int screeny); -extern void zoom_filter_mmx (int sizeX, int sizeY, Pixel *src, Pixel *dest, int *brutS, int *brutD, int buffratio, int precalCoef[16][16]); -extern void zoom_filter_xmmx (int sizeX, int sizeY, Pixel *src, Pixel *dest, int *brutS, int *brutD, int buffratio, int precalCoef[16][16]); -/* END TODO */ +#include "mmx.h" #endif /* CPU_X86 */ - -/* prototypes of methods */ - -void zoom_filter_c (int sizeX, int sizeY, Pixel *src, Pixel *dest, int *brutS, int *brutD, int buffratio, int precalCoef[16][16]); -void create_output_with_brightness(Pixel *src, Pixel *output_buffer, int screensize, int iff); - - static void setOptimizedMethods(PluginInfo *p) { unsigned int cpuFlavour = cpu_flavour(); -- cgit v1.2.3