Bug 470638 - xserver-1.5.2-exa-master-upgrade.patch has wrong lines concerned with exa_render.c module.
Summary: xserver-1.5.2-exa-master-upgrade.patch has wrong lines concerned with exa_ren...
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Fedora
Classification: Fedora
Component: xorg-x11-server
Version: 10
Hardware: All
OS: Linux
medium
high
Target Milestone: ---
Assignee: Adam Jackson
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2008-11-08 05:28 UTC by Masao Takahashi
Modified: 2008-12-26 01:49 UTC (History)
2 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2008-12-26 01:49:47 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description Masao Takahashi 2008-11-08 05:28:50 UTC
Description of problem:
There are illegal displacements as follows.
So, characters displayed in windows has some lacked portion .

1. line 1805
   wrong   :  +	    int rect_y2 = r->yDst + r->width;
   correct :  +     int rect_y2 = r->yDst + r->height;

2. line 1808
   wrong   : +	    if (r->xDst < y1) y1 = r->xDst;
   correct : +      if (r->yDst < y1) y1 = r->yDst;

3. line 1815
   wrong   : +      if (x2 <= x1 && y2 <= y1)
   correct : +      if (x2 <= x1 || y2 <= y1)


Version-Release number of selected component (if applicable):
xorg-x11-server-1.5.3-1

How reproducible:
always

Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Bug Zapper 2008-11-26 05:01:59 UTC
This bug appears to have been reported against 'rawhide' during the Fedora 10 development cycle.
Changing version to '10'.

More information and reason for this action is here:
http://fedoraproject.org/wiki/BugZappers/HouseKeeping


Note You need to log in before you can comment on or make changes to this bug.