Commit graph

499 commits

Author SHA1 Message Date
Richard Goedeken
88cfd1c245 use C++ compiler to link instead of LD, because the compiler knows where the standard C++ libs are 2009-12-20 22:41:07 -05:00
Richard Goedeken
3018771089 Makefile improvements: throw error if OS/CPU not supported, use DESTDIR in install/uninstall paths, per Lazhur request. Allow user-specified CC/CXX/LD paths, per Auria request 2009-12-19 20:42:14 -05:00
Richard Goedeken
db26452528 OSX hack for inline assembly code: mismatch between function names with-w/o preceding underscores 2009-12-15 14:09:16 -05:00
Richard Goedeken
ebaf6229e5 Added tag 1.99.1 for changeset 47d4f62aae9e 2009-12-14 21:38:09 -05:00
Richard Goedeken
c08d371306 updated RELEASE file for date 2009-12-14 21:38:07 -05:00
Richard Goedeken
df1f24eb18 disable Fog by default, because it doesnt work properly 2009-12-14 19:38:28 -05:00
Richard Goedeken
b6ce022c02 dont need sudo when installing to user-local folder 2009-12-13 16:30:21 -05:00
Richard Goedeken
265936a128 added INSTALL file 2009-12-13 15:46:01 -05:00
Richard Goedeken
af6966ec7a added README and RELEASE files 2009-12-13 00:02:45 -05:00
Richard Goedeken
774bcfc8ad added LICENSES file 2009-12-12 23:20:00 -05:00
Richard Goedeken
f308cfca3d update version number to 1.99.1 2009-12-12 00:22:03 -05:00
Richard Goedeken
185ee997ac added install/uninstall/rebuild to makefile 2009-12-12 00:21:21 -05:00
Richard Goedeken
76128a632b renamed Math.h/cpp to VectorMath.h/cpp to avoid header name collisions 2009-11-23 22:51:58 -05:00
Richard Goedeken
9a3cefebcf modified Makefile for OSX compatibility patch from Auria and refactored for simplicity 2009-11-23 19:36:14 -05:00
Richard Goedeken
b70e0cb7e0 changed some printfs to DebugMessage callbacks 2009-11-21 14:32:32 -05:00
Richard Goedeken
e667649174 removed unused osal_dynlib functions 2009-11-21 14:21:51 -05:00
Richard Goedeken
86e27e76e5 fixed gcc warnings from upgraded compiler (4.3.4) 2009-11-20 00:17:25 -05:00
Richard Goedeken
f1f691285b added OSX-specific CFLAGS and LDFLAGS for SDL 2009-11-14 00:00:30 -05:00
Richard Goedeken
0a17c83812 use TARGET variable instead of writing out long output library name 3 times 2009-11-13 23:37:45 -05:00
Richard Goedeken
66a89bd0b7 imported patch OSX_Build 2009-11-13 23:34:26 -05:00
Richard Goedeken
52b1e5f647 bugfix: I forgot to update the code which sets default params for the change in Video-General parameters 2009-11-08 07:43:10 -05:00
Richard Goedeken
82fc8bc591 handle fullscreen video mode properly: start up in this mode instead of always starting in windowed and needing the core to switch to fullscreen. Only use 1 set of resolution parameters, rather than separate values for windowed/fullscreen modes 2009-11-07 23:37:35 -05:00
Richard Goedeken
d673f5df2e bugfix in makefile: NO_ASM was always on 2009-11-06 01:06:00 -05:00
Richard Goedeken
3ad10cd88e added NO_ASM build for rice video 2009-11-06 00:17:17 -05:00
Richard Goedeken
f49c3c452a fixed 32-bit build by removing non-PIC 32-bit inline asm code in RDP_Texture.h. This code was untested and wasnt conformant with the at&t syntax; I had previously fixed the PIC code here, so I left that as the only case for 32-bit ASM 2009-11-06 00:11:01 -05:00
Richard Goedeken
7978575f58 re-wrote the graphics context code to use the Core's video extension instead of directly using SDL 2009-10-30 01:09:49 -04:00
Richard Goedeken
c0f6f1f813 eliminated duplicate 'Found ROM ...' messages 2009-10-28 22:36:32 -04:00
Richard Goedeken
4aab03ea1f removed some #ifdef WIN32s 2009-10-28 22:24:02 -04:00
Richard Goedeken
306e5ddc73 added version.h, changed the way that version info and plugin name are handled 2009-10-28 22:13:53 -04:00
Richard Goedeken
a8a6fff41d replaced GetPluginDir() calls in TextureFilters.cpp with ConfigGetUserDataPath() calls, and removed GetPluginDir() function 2009-10-28 21:53:50 -04:00
Richard Goedeken
98b8f7bfbd rewrote WriteIniFile() to use ConfigGetSharedDataFilepath() instead of GetPluginDir() and remove the use of remove/rename file commands 2009-10-28 21:37:33 -04:00
Richard Goedeken
6c8df2a9aa split InitConfiguration() in Config.cpp into InitConfiguration() and LoadConfiguration() so that plugin defaults could be set when PluginStartup() is called 2009-10-28 20:31:46 -04:00
Richard Goedeken
1ab430a2af added RiceVideoLinux.ini to Rice Video repository 2009-10-28 07:57:10 -04:00
Richard Goedeken
034b1aa4dd use core configuration API instead of reading/writing own config file. 2009-10-28 01:25:21 -04:00
Richard Goedeken
58b8501aa8 removed some more unneeded configuration parameters 2009-10-27 22:56:14 -04:00
Richard Goedeken
f9f4957039 removed some unused configuration parameters 2009-10-27 22:45:51 -04:00
Richard Goedeken
38ffa0f9a6 re-add the ROM header byteswapping code in open_rom() 2009-10-27 08:36:47 -04:00
Richard Goedeken
d4ef0dfbff update Config.cpp to use new core api to get the configuration directory 2009-10-26 19:50:21 -04:00
Richard Goedeken
2c15da390f don't byte-swap the ROM header information during startup 2009-10-26 00:52:19 -04:00
Richard Goedeken
1334cb937c converted all printf() and ErrorMsg() calls to DebugMessage() for re-direction to front-end. use new Config Pathname functions in .ini and .cfg file reading/writing 2009-10-26 00:13:29 -04:00
Richard Goedeken
d420c96b63 added 2.0 API functions in Video.cpp, fixed a makefile bug preventing compilation of C source files, added osal_dynamiclib, removed video thread code in Video.cpp. it builds and runs with the core and ui-console, but crashes because configuration handling needs to be re-written 2009-10-25 22:00:10 -04:00
Richard Goedeken
84349121f5 removed all of the functions which are not part of the new Mupen64plus 2.0 api 2009-10-25 19:55:28 -04:00
Richard Goedeken
01caa9efbf cleaned up Video.cpp in preparation for adding Mupen64Plus API functions 2009-10-25 18:30:28 -04:00
Richard Goedeken
afd19dfee3 fixed capitalization on a couple of source code files, list/build the source files in alphabetical order 2009-10-25 17:52:27 -04:00
Richard Goedeken
805946aed2 Completely refactored all of the #include statements to get rid of the horrible stdafx.h thing 2009-10-25 12:13:59 -04:00
Richard Goedeken
05e9c1605e got rid of the ridiculous Win32 types, cut out most of osal_win32types.h (aka winlnxdefs.h) 2009-10-24 23:58:17 -04:00
Richard Goedeken
e1ade5306c removed old API headers and GTK gui functions. started refactoring to get rid of all these custom types 2009-10-24 20:46:55 -04:00
Richard Goedeken
bab27304b6 re-wrote makefile for current mupen64plus conventions 2009-10-24 16:00:11 -04:00
Richard Goedeken
9a73b903e8 import rice_video plugin from mupen64plus SVN repo revision 1416 2009-10-24 15:44:41 -04:00