We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
Flyingsand
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…
»
Lokit Khemka
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 …
»
Simon Anciaux
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…
»
Simon Anciaux
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")…
»
D3zmodos
Awesome! If you're planning to make it publicly available at some point, do you expect you'll ever…
»
Flyingsand
It's funny, I usually do this too, but it's been years since I wrote the original Intel intrinsic…
»
Flyingsand
On average, it's about a 1.75x speedup over C code. As you point out, however, maybe there are so…
»
Dawoodoz
Yes, UV is the absolute differences between channels used in compression. I worked full time writ…
»
Dawoodoz
I usually keep one pointer iterating over rows by adding a stride after each row. Then I assign th…
»
Mārtiņš Možeiko
That's only true for arrays with reference types (class'es). For primitive types like int or floa…
»
Mārtiņš Možeiko
What is performance comparison Neon vs C code? If you get at least 2x speedup - that's good. ARM C…
»
x13pixels
My apologies! It shouldn't be too hard to add fully customizable colors, though probably without a…
»
Flyingsand
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 …
»
Simon Anciaux
I think the point of the script is for cute exporter to generate data in any format the user wants…
»
Martijn Courteaux
By, UV, you mean chromaticity? In the YUV color model, which is a linear transform from an RGB sp…
»
Simon Anciaux
Thanks for the post. It was interesting to see that you have similar issues than I did and sometim…
»
Dawoodoz
In VB .NET, reallocating an array while one of the elements is passed by reference gives a run-tim…
»
Dawoodoz
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! :)
»
aspiring_dev
Arrow icons are barely legible, as are the line numbers in the source window, and changed values i…
»
Dawoodoz
I would still stick with basic gamma curve and white balance, because it will always look natural.…
»
Mārtiņš Možeiko
You can store array as pointer to struct { T* data; int length; ...} - this way even if data chang…
»