On 11 Apr 2007, at 23:12, Stefan Lucke wrote:

> On Wednesday 04 April 2007 19:06, Torgeir Veimo wrote:
>>
>> On 4 Apr 2007, at 17:27, Martin Wache wrote:
>>
>>> Torgeir Veimo schrieb:
>>>>> Ok, that works. But I got an endian issue I guess. Are you
>>>>> working on
>>>>> a ppc mac?
>>>>>
>>> Yes :-)
>>>
>>>>> Here's a screenshot;
>>>>>
>>> I had a chance to try it on an intel mac a few weeks ago, I didn't
>>> have
>>> the time to fix those problems correctly, but this hack fixes the
>>> problems...
>>>
>>> Bye,
>>> Martin
>>> Index: utils.c
>>> ===================================================================
>>> RCS file: /cvsroot/softdevice/softdevice/utils.c,v
>>> retrieving revision 1.25
>>> diff -u -r1.25 utils.c
>>> --- utils.c 15 Jan 2007 19:35:13 -0000      1.25
>>> +++ utils.c 4 Apr 2007 16:24:06 -0000
>>> @@ -172,9 +172,13 @@
>>>     }
>>>  #endif
>>>     for ( ; i>=2; i-=2 ) {
>>> +#if 1
>>> +      *((uint32_t *)dest1) = (yc1[1] << 24)+ (vc[0] << 16) + (yc1
>>> [0] << 8) + (uc[0] << 0);
>>> +      *((uint32_t *)dest2) = (yc2[1] << 24)+ (vc[0] << 16) + (yc2
>>> [0] << 8) + (uc[0] << 0);
>>> +#else
>
> Which one needs this: PowerMac or IntelMac ?

IntelMac.

> Are you using the OpenGL output ?

Yes. It only works with the McVdrClient shm client. Martin indicated  
that there are threading problems preventing normal usage.

> Maybe that using GL_UNSIGNED_SHORT_8_8_REV_APPLE instead of
> GL_UNSIGNED_SHORT_8_8_APPLE has the same effect (line 747 video- 
> quartz.c).

Yes that works as well. It would be nice if configure handled these  
things automagically.

> OT: How much does the develoment enviroment for apple costs ?

It's free. My work supplied my macbook pro, which is the best machine  
I've ever had, except for the missing home/end/pgup/pgdn keys..

-- 
Torgeir Veimo
[EMAIL PROTECTED]



_______________________________________________
Softdevice-devel mailing list
[EMAIL PROTECTED]
https://lists.berlios.de/mailman/listinfo/softdevice-devel

Reply via email to