Page 1 of 1

For those who watched the bitmap loading video

Posted: October 13th, 2017, 5:00 am
by chili

Re: For those who watched the bitmap loading video

Posted: October 13th, 2017, 7:03 am
by albinopapa
Typo:
Chilipedia wrote:Color( file.get()first(G),file.get()second(B),file.get()third(R) )
I think you meant
Color( file.get()first(B),file.get()second(G),file.get()third(R) )

Re: For those who watched the bitmap loading video

Posted: October 13th, 2017, 7:30 am
by chili
Indeed I did. Thanks for the heads up.

Re: For those who watched the bitmap loading video

Posted: October 17th, 2017, 3:02 am
by LuisR14
parameters are just handled differently depending on the function's calling convention :P

Re: For those who watched the bitmap loading video

Posted: October 17th, 2017, 11:31 am
by chili
Long time no see.

You aren't going to find any functions that pass left to right in C++. cdecl, fastcall, thiscall, vectorcall are all rtl, even stdcall,l which mimics pascal convention (which is ltr) to a large extent, also uses rtl.

Re: For those who watched the bitmap loading video

Posted: October 17th, 2017, 1:17 pm
by LuisR14
from what I gather, only clrcall passes ltr (which we here at Chili Institute never really use :D)
chili wrote:Long time no see.
heh, I've been here, just lurking mostly :P

Re: For those who watched the bitmap loading video

Posted: October 18th, 2017, 1:38 am
by chili
Hmmm, interesting. I haven't done any clr interop stuff, nor do I wish to :D