http://bugs.freedesktop.org/show_bug.cgi?id=27043





--- Comment #3 from Fabio Pedretti <fabio....@libero.it>  2010-03-12 08:43:09 
PST ---
(In reply to comment #2)
> should be fixed in d1ca1599f0319f5c99852ce24420aa592e806db0
> 

It's fixed, but I noticed that it would work also with:

functions->CopyPixels = _mesa_meta_CopyPixels;
functions->DrawPixels = _mesa_meta_DrawPixels;
if (radeon->radeonScreen->kernel_mm) {
    functions->ReadPixels = radeonReadPixels;
}

Is this better than current?

if (radeon->radeonScreen->kernel_mm) {
    functions->CopyPixels = _mesa_meta_CopyPixels;
    functions->DrawPixels = _mesa_meta_DrawPixels;
    functions->ReadPixels = radeonReadPixels;
}


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

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

Reply via email to