[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-06-07 Thread cgu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User cgu changed the following:

  What|Old value |New value

Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Jun  7 02:29:10 -0700 
2006 ---
Integrated in OOC680m4

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-03-22 Thread cgu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User cgu changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 22 07:57:20 -0800 
2006 ---
Verified in cws vcl54

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-02-24 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User thb changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Fri Feb 24 03:33:27 -0800 
2006 ---
@cgu: fixed in CWS vcl54, please verify. You might need to get NF's toshiba
under JDS, to really verify this.

re-open issue and reassign to [EMAIL PROTECTED]

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-02-24 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User thb changed the following:

  What|Old value |New value

   Assigned to|thb   |cgu

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Fri Feb 24 03:33:30 -0800 
2006 ---
reassign to [EMAIL PROTECTED]

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-02-24 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User thb changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Fri Feb 24 03:33:33 -0800 
2006 ---
reset resolution to FIXED

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-01-25 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User thb changed the following:

  What|Old value |New value

Status|STARTED   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Jan 25 07:20:47 -0800 
2006 ---
Here, X11 sal's YieldGraphicsExpose() seems to be the primary culprit

Function first introduced in salgdi2.cxx:1.21, with vcl7pp1r3.

The fix was done for SO7, corresponding issue is issue 20249. The original
code in SO7 is:

void SalFrameData::YieldGraphicsExpose()
{
XEvent aEvent;
do
{
while( XCheckTypedWindowEvent( GetXDisplay(), GetWindow(), Expose,
aEvent ) )
HandleExposeEvent( aEvent );

XIfEvent( GetXDisplay(), aEvent, GraphicsExposePredicate, 
(XPointer)this );
if( aEvent.type == NoExpose )
return;

HandleExposeEvent( aEvent );
} while( aEvent.xgraphicsexpose.count != 0 );
} 

which is _only_ called from SalGraphics::CopyBits() (i.e. this fixes
_only_ the described bug, nothing else).

For OOo2.0, now all places that could possibly generate GraphicsExpose events
(which are by default enabled for (nearly) all GCs) now call
YieldGraphicsExpose(), which now also contains two nested polls, in case the
guaranteed GraphicsExpose or NoExpose events don't show up in time. Now, this 
a) relies on round-trip times to be _always_ less than two seconds
b) introduces full round-trips for _every_ pixmap/blit operation
c) syncs every animation to server/network/socket timing (plus the kernel
scheduler), which is what this bug is all about.

Fixed by at least reducing the YieldGraphicsExposure() call to the single
necessary case (i.e. blitting within a single window). More elaborate solution
scheduled for OOo 3.0 (async GraphicsExposure handling)


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-01-17 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699


User thb changed the following:

  What|Old value |New value

Status|NEW   |STARTED

  Target milestone|---   |OOo 2.0.3





--- Additional comments from [EMAIL PROTECTED] Tue Jan 17 05:11:42 -0800 
2006 ---
Set a target.

Issue e.g. happens on X.org 6.8.2, on a SuSE Linux Enterprise Server 9 (JDS).

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 60699] Irregular timeouts during repaints, slideshow transition effects jerky

2006-01-17 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60699





--- Additional comments from [EMAIL PROTECTED] Tue Jan 17 06:25:05 -0800 
2006 ---
And the graphics chip is a NVidia GeForce FX Go 5200

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]