[Bug 11184] DrawPixels set wrong pixel color

2009-08-24 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184


ajax at nwnk dot net a...@nwnk.net changed:

   What|Removed |Added

Version|CVS |git




--- Comment #11 from ajax at nwnk dot net a...@nwnk.net  2009-08-24 12:27:03 
PST ---
Mass version move, cvs - git


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-21 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184





--- Comment #10 from [EMAIL PROTECTED]  2007-06-21 08:16 PST ---
Additional fixes done after report that i965 still suffered from this.  See bug
11100.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-20 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184





--- Comment #7 from [EMAIL PROTECTED]  2007-06-20 06:35 PST ---
My i915 Xserver setup is totally foo-barred at the moment and I don't have time
to figure out what's wrong with it.  DrawPixels seems OK with the xlib driver. 
That's all I can test right now.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-20 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184





--- Comment #8 from [EMAIL PROTECTED]  2007-06-20 10:01 PST ---
OK, I'm up and running again and I think I've fixed this.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-20 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #9 from [EMAIL PROTECTED]  2007-06-20 18:31 PST ---
yes. fixed in b9080dd5493eb23af6c5c494550c7b1cb481ca7b.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-20 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED




-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184





--- Comment #4 from [EMAIL PROTECTED]  2007-06-19 17:33 PST ---
There's at least two things wrong with the test program.

1. The current raster position is invalid when glDrawPixels is hit so nothing's
drawn.  Try glRasterPos2f(0, 0).

2. The dataBuf array is initialized incorrectly.  It should be something like
this:

   for (i = 0; i  size; i++) {
  dataBuf[i*3+0] = 255;
  dataBuf[i*3+1] = 255;
  dataBuf[i*3+2] = 255;
   }

Can you retest with these fixes?


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-19 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184





--- Comment #6 from [EMAIL PROTECTED]  2007-06-19 22:56 PST ---
Brian: you've seen the drawpix failure as a result of that commit, right?


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-18 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




--- Comment #3 from [EMAIL PROTECTED]  2007-06-18 15:52 PST ---
Commit 9e8a961dd7d7b717a9fb4ecdea1c1b60ea355efe introduced the error.  This is
a software fallback.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-08 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184


[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]




--- Comment #2 from [EMAIL PROTECTED]  2007-06-08 00:30 PST ---
*** Bug 11100 has been marked as a duplicate of this bug. ***


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel


[Bug 11184] DrawPixels set wrong pixel color

2007-06-07 Thread bugzilla-daemon
http://bugs.freedesktop.org/show_bug.cgi?id=11184





--- Comment #1 from [EMAIL PROTECTED]  2007-06-07 00:20 PST ---
Created an attachment (id=10220)
 -- (http://bugs.freedesktop.org/attachment.cgi?id=10220action=view)
test case

Although set pixel data with white color, glDrawPixels draws pixels with color
set by glColor.


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
--
___
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel