I usually keep one pointer iterating over rows by adding a stride after each row. Then I assign th…
That's only true for arrays with reference types (class'es). For primitive types like int or floa…
What is performance comparison Neon vs C code? If you get at least 2x speedup - that's good. ARM C…
My apologies! It shouldn't be too hard to add fully customizable colors, though probably without a…
Not long ago, due mainly to curiosity, I began porting my hobby game to iOS. Until then I supporte…
Miles —
Hiding "advanced" UI is an antipattern for wimps. I think it's fair to say this application is aim…
Artur —
First of all, I'd like to congratulate you on your efforts! The game is looking awesome and doing …
I think the point of the script is for cute exporter to generate data in any format the user wants…
By, UV, you mean chromaticity? In the YUV color model, which is a linear transform from an RGB sp…
Thanks for the post. It was interesting to see that you have similar issues than I did and sometim…
In VB .NET, reallocating an array while one of the elements is passed by reference gives a run-tim…
I use the ini format (one assignment per row between key and value) for sprite maps in C++, becaus…
Miles —
I don't know about C#, but in Java, you can only ever have an array of pointers/references (or of…
C_Worm —
Allright! thanks for clearing that out for me! :)
Arrow icons are barely legible, as are the line numbers in the source window, and changed values i…
I would still stick with basic gamma curve and white balance, because it will always look natural.…
You can store array as pointer to struct { T* data; int length; ...} - this way even if data chang…
I was wondering what's the best way to avoid storing pointers as references into the array, as the…
Thanks Aiden. I can take a look.
Cute Exporter has been exporting the metadata about the texture atlas as a json file. This was bec…
It's nice having a pre-made .desktop file so that you can easily copy that to and an icon to copy…
SilverNode devlog #002 is out! In an attempt to have a broader photo set, covering more types of p…
Jens —
I was just going to make a small post regarding the BEdit UI system as a response to questions on…
The double backslash is to escape an single backslash in a string. In this case it's just to have …
\ is because you want to put \ in string. You need to escape it when putting in C string. So "\" b…
Aidan —
When a function pointer that has been corrupted is called, remedybg doesn't break at the calling p…
C_Worm —
on msdn they have a "print all files in the directory" example and they say that they "prepare" th…
Thanks. The GUI is custom code, but I wouldn't call it a library.
John —
Looks fantastic, couldn't expect anything less from you Simon! Is that a custom GUI library of you…