Skip to content

Commit

Permalink
Updated RELEASE and version info for 1.99.2 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
richard42 committed Jan 7, 2010
1 parent 5bc01eb commit db0d089
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Mupen64Plus-Video-Rice RELEASE
------------------------------

Mupen64Plus-Video-Rice v1.99.2 - January 6, 2010
--------------------------------------------------
- bugfix: fix fragment program combiner for Intel drivers in Win32, by ensuring that program does not allocate unused temp vars or call TEX commands for texture units that are not enabled
- new feature: compile-time option for opengl debugging by calling glGetError after each opengl command (except inside of glBegin/glEnd)
- portability: use ALIGN() for aligned data member declarations in header files as well as the definitions in CPP files
- portability: refactor opengl code to use VidExt_GL_GetProc() for all opengl functions newer than v1.1, so that this will work in Windows
- portability: Abstracted directory-handling code with new osal_files* source code
- portability: replaced unix gettimeofday() function calls with SDL_GetTicks()
- new feature: added MSVC8 project file, fixed minor incompatibilities with VC compiler
- Makefile improvements:
- throw error if OS/CPU not supported
- use DESTDIR in install/uninstall paths
- Allow user-specified CC/CXX/LD paths
- use C++ compiler to link instead of LD, because the compiler knows where the standard C++ libs are
- OSX hack for inline assembly code: mismatch between function names with-w/o preceding underscores

Mupen64Plus-Video-Rice v1.99.1 - December 14, 2009
--------------------------------------------------
- Converted to new Mupen64Plus 2.0 API
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define VERSION_H

#define PLUGIN_NAME "Mupen64Plus OpenGL Video Plugin by Rice"
#define PLUGIN_VERSION 0x016301
#define PLUGIN_VERSION 0x016302

#define VERSION_PRINTF_SPLIT(x) (((x) >> 16) & 0xffff), (((x) >> 8) & 0xff), ((x) & 0xff)

Expand Down

0 comments on commit db0d089

Please sign in to comment.