https://bugs.freedesktop.org/show_bug.cgi?id=31925
Gordon Jin changed:
What|Removed |Added
Component|Mesa core |glsl-compiler
AssignedTo|mesa-...@l
https://bugs.freedesktop.org/show_bug.cgi?id=29164
Gordon Jin changed:
What|Removed |Added
Component|Mesa core |glsl-compiler
AssignedTo|mesa-...@l
On 12/15/2010 09:30 PM, Christoph Bumiller wrote:
> On 12/15/2010 08:20 PM, Christoph Bumiller wrote:
>> On 12/15/2010 07:55 PM, Jerome Glisse wrote:
>>> Hi,
>>>
>>> I am facing an issue which i am not sure what is the proper things to
>>> do about. piglit tfp test try to upload PIPE_FORMAT_B8G8R8A
On 12/15/2010 08:20 PM, Christoph Bumiller wrote:
> On 12/15/2010 07:55 PM, Jerome Glisse wrote:
>> Hi,
>>
>> I am facing an issue which i am not sure what is the proper things to
>> do about. piglit tfp test try to upload PIPE_FORMAT_B8G8R8A8_UNORM to
>> texture pixmap which is PIPE_FORMAT_B8G8R8
On Wed, Dec 15, 2010 at 3:12 PM, José Fonseca wrote:
> Jerome,
>
> Hmm. B8G8R8A8 -> B8G8R8X8 should be accepted by
> util_is_format_compatible.
>
> It looks like util_is_format_compatible arguments are swapped, ie., it
> should be
>
> assert(util_is_format_compatible(util_format_description(src
Jerome,
Hmm. B8G8R8A8 -> B8G8R8X8 should be accepted by
util_is_format_compatible.
It looks like util_is_format_compatible arguments are swapped, ie., it
should be
assert(util_is_format_compatible(util_format_description(src->format),
util_format_description(dst->format)));
instead of
Hello list
I tried posting this message to the freedesktop mailing list, but it
seems pretty dead, and I only got a response suggesting to resend the
message to either mesa-dev or mesa-user. So I'm trying here to see if
someone here knows anything about this:
I'm glad I found this page on the wik
On Wed, Dec 15, 2010 at 2:42 PM, Christoph Bumiller
wrote:
> On 12/15/2010 08:25 PM, Jerome Glisse wrote:
>> On Wed, Dec 15, 2010 at 2:20 PM, Christoph Bumiller
>> wrote:
>>> On 12/15/2010 07:55 PM, Jerome Glisse wrote:
Hi,
I am facing an issue which i am not sure what is the prope
On 12/15/2010 08:25 PM, Jerome Glisse wrote:
> On Wed, Dec 15, 2010 at 2:20 PM, Christoph Bumiller
> wrote:
>> On 12/15/2010 07:55 PM, Jerome Glisse wrote:
>>> Hi,
>>>
>>> I am facing an issue which i am not sure what is the proper things to
>>> do about. piglit tfp test try to upload PIPE_FORMAT_
On Wed, Dec 15, 2010 at 2:20 PM, Christoph Bumiller
wrote:
> On 12/15/2010 07:55 PM, Jerome Glisse wrote:
>> Hi,
>>
>> I am facing an issue which i am not sure what is the proper things to
>> do about. piglit tfp test try to upload PIPE_FORMAT_B8G8R8A8_UNORM to
>> texture pixmap which is PIPE_FOR
On 12/15/2010 07:55 PM, Jerome Glisse wrote:
> Hi,
>
> I am facing an issue which i am not sure what is the proper things to
> do about. piglit tfp test try to upload PIPE_FORMAT_B8G8R8A8_UNORM to
> texture pixmap which is PIPE_FORMAT_B8G8R8X8_UNORM r600g assert in
> blitter util because format a
Can you resend with attaching the patch, i am getting corrupted patch
here dunno why.
Cheers,
Jerome
___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev
Hi,
I am facing an issue which i am not sure what is the proper things to
do about. piglit tfp test try to upload PIPE_FORMAT_B8G8R8A8_UNORM to
texture pixmap which is PIPE_FORMAT_B8G8R8X8_UNORM r600g assert in
blitter util because format are not compatible. Should all pixmap
texture considered w
On Wed, 2010-12-15 at 09:19 -0800, Kristian Høgsberg wrote:
> On Wed, Dec 15, 2010 at 10:10 AM, Thomas Hellstrom
> wrote:
> ...
> > Given this, I would advise strongly against building spinlocks into any code
> > that might be run on a uni-processor system. Particularly gallium utility
> > code.
On Wed, Dec 15, 2010 at 10:10 AM, Thomas Hellstrom
wrote:
...
> Given this, I would advise strongly against building spinlocks into any code
> that might be run on a uni-processor system. Particularly gallium utility
> code.
> If we want to get rid of unnecessary locking overhead we should probab
OK, Some info to back this up, please see inline.
On 12/15/2010 01:20 PM, Thomas Hellstrom wrote:
On 12/15/2010 09:23 AM, Marek Olšák wrote:
On Tue, Dec 14, 2010 at 8:10 PM, Thomas Hellstrom
mailto:thellst...@vmware.com>> wrote:
Hmm,
for the uninformed, where do we need to use spinlo
https://bugs.freedesktop.org/show_bug.cgi?id=31940
Pavel Ondračka changed:
What|Removed |Added
Status|RESOLVED|REOPENED
Resolution|FIXED
On 12/15/2010 09:23 AM, Marek Olšák wrote:
On Tue, Dec 14, 2010 at 8:10 PM, Thomas Hellstrom
mailto:thellst...@vmware.com>> wrote:
Hmm,
for the uninformed, where do we need to use spinlocks in gallium
and how do
we avoid using them on an UP system?
I plan to use spinlocks to
https://bugs.freedesktop.org/show_bug.cgi?id=31084
Michal Suchanek changed:
What|Removed |Added
CC||hramr...@centrum.cz
--
Configure bugm
https://bugs.freedesktop.org/show_bug.cgi?id=31084
--- Comment #1 from Michal Suchanek 2010-12-15 03:36:24
PST ---
fixed in trunk.
--
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
_
UP = Uniprocessor system, (S)MP = (Symmetric) multiprocessor system.
On Wed, Dec 15, 2010 at 2:23 AM, Marek Olšák wrote:
> On Tue, Dec 14, 2010 at 8:10 PM, Thomas Hellstrom
> wrote:
>
>> Hmm,
>>
>> for the uninformed, where do we need to use spinlocks in gallium and how
>> do
>> we avoid using
On Tue, Dec 14, 2010 at 8:10 PM, Thomas Hellstrom wrote:
> Hmm,
>
> for the uninformed, where do we need to use spinlocks in gallium and how do
> we avoid using them on an UP system?
>
I plan to use spinlocks to guard very simple code like the macro
remove_from_list, which might be, under some ci
22 matches
Mail list logo