You could try rendering with a single thread to see if it cuts down on variance. If it makes a big…
Miles —
Yes, I literally said that immediately before the part you quoted:
Miles —
Two things:You could try rendering with a single thread to see if it cuts down on variance. If it …
Ben —
Thank you! I appreciate you taking the time to going out of your way to make an example, it's real…
When the program is calling DEBUGLoadBMP function, the ReadEntireFile function inside is failing a…
Jens —
One of the features I find useful in C++14 is the number literal syntax, where you can add single …
I'm not sure if or when I'll be releasing it. I would like to release it but I'm kind of afraid of…
My id struct is very similar (four u64), but I use it in a different way. The most common way I cr…
Jens —
The is very simple ... void SomeView(U32 viewIndex) { if (TextButton(CreateID(viewIndex), "foo")…
Awesome! If you're planning to make it publicly available at some point, do you expect you'll ever…
It's funny, I usually do this too, but it's been years since I wrote the original Intel intrinsic…
On average, it's about a 1.75x speedup over C code. As you point out, however, maybe there are so…
Yes, UV is the absolute differences between channels used in compression. I worked full time writ…
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…