Tagged Questions
3
votes
3answers
579 views
Fastest way to cast int to UInt32 bitwise?
i have some low level image/texture operations where 32-bit colors are stored as UInt32 or int and i need a really fast bitwise conversion between the two.
e.g.
int color = -2451337;
...
2
votes
2answers
3k views
C# Problem using blowfish NET: How to convert from Uint32[] to byte[]
In C#,I'm using Blowfish.NET 2.1.3's BlowfishECB.cs file(can be found here)
In C++,It's unknown,but it is similiar.
In C++,the Initialize(blowfish) procedure is the following:
void ...
0
votes
2answers
275 views
How do I convert userdata to a uint32 or float?
How do I convert user data like this:
local user_data = { 0x33, 0x22, 0x11, 0x00 }
to either a uint32 or float using Lua? I cant find anything in the documentation that talks about this.
I've ...