-
ibrown committed revision 396 to the PCSX2 and PCSX2 team's plugins SVN repository, changing 3 files.
2008-11-17 20:10:17 UTC by ibrown
-
gigaherz committed revision 395 to the PCSX2 and PCSX2 team's plugins SVN repository, changing 1 files.
2008-11-06 23:19:22 UTC by gigaherz
-
I use vsync to limit my frames, although it's not as versatile as a limit frames option.
2008-10-31 16:29:57 UTC by nobody
-
I trace problem with Linux build with switchen on AA (2x or 4x) and a CG Error invalid parameter issue.
And I found that souce is in ZeroGS::SetTexVariablesInt function, more precisely with (line 4866):
cgGLSetParameter4fv(pfragment->fRealTexDims, v);
Trouble that game first run pfragment->fRealTexDims is not set to anything, it is NULL. I check it.
I'v fixed this issue by following...
2008-10-21 21:46:29 UTC by derfflinger
-
There is additional includes that should be add for gcc 4.3 in c++ programs (http://gcc.gnu.org/gcc-4.3/porting_to.html), otherwise it made an error on compilation. There is:
#include
#include .
2008-10-20 03:21:22 UTC by derfflinger
-
Well, anothers gcc 4.3 trouble is happened with VifDma.C, and the source is argument for movaps -- it should be xmmword.
2008-10-20 03:17:54 UTC by derfflinger
-
I can confirm the bug and that the patch fixes it.
2008-10-19 22:29:14 UTC by nobody
-
Index: pcsx2/x86/aVif.S
===================================================================
--- pcsx2/x86/aVif.S (revision 394)
+++ pcsx2/x86/aVif.S (working copy)
@@ -272,7 +272,7 @@
#define UNPACK_S_32SSE_3(CL, TOTALCL, MaskType, ModeType) UNPACK_S_32SSE_3x(CL, TOTALCL, MaskType, ModeType, movdqu)
#define UNPACK_S_32SSE_2(CL, TOTALCL, MaskType, ModeType) \
- movq XMM_R1, xmmword...
2008-10-18 22:56:27 UTC by derfflinger
-
Well, I do some reseach and found source of trouble:
movq should have qword parameter, not xmmword
punpcklwd -- xmmword
movd -- dword
some of arguments is not correct.
2008-10-18 22:55:09 UTC by derfflinger
-
I have Ubunty/intrepid with gcc 4.3 and see a lot of errors with aVif.S file (wich I have not in hardy and gcc 4,2).
Such as:
aVif.S:1593: Error: ambiguous operand size or operands invalid for `movq'
aVif.S:1594: Error: ambiguous operand size or operands invalid for `movq'
aVif.S:1596: Error: ambiguous operand size or operands invalid for `movq'
aVif.S:1597: Error: ambiguous operand size...
2008-10-18 21:05:43 UTC by nobody