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
notnullnotvoidTwo things: 1. You could try rendering with a single thread to see if it cuts down …
»
Miles
mmozeikoThat's only true for arrays with reference types (class'es). For primitive types like int…
»
Miles
Two things: 1. You could try rendering with a single thread to see if it cuts down on variance. I…
»
Ben
Thank you! I appreciate you taking the time to going out of your way to make an example, it's rea…
»
Lokit Khemka
When the program is calling DEBUGLoadBMP function, the ReadEntireFile function inside is failing …
»
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 o…
»
Simon Anciaux
My id struct is very similar (four u64), but I use it in a different way. The most common way I c…
»
Jens
The WidgetID is very simple 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23…
»
D3zmodos
Awesome! If you're planning to make it publicly available at some point, do you expect you'll eve…
»
Flyingsand
DawoodozI usually keep one pointer iterating over rows by adding a stride after each row. Then I …
»
Flyingsand
mmozeikoWhat is performance comparison Neon vs C code? If you get at least 2x speedup - that's go…
»
Dawoodoz
mcourteaux By, UV, you mean chromaticity? In the YUV color model, which is a linear transform fro…
»
Dawoodoz
I usually keep one pointer iterating over rows by adding a stride after each row. Then I assign t…
»
Mārtiņš Možeiko
notnullnotvoidThus every object referenced in an array is individually allocated on the heap and …
»
Mārtiņš Možeiko
What is performance comparison Neon vs C code? If you get at least 2x speedup - that's good. ARM …
»
x13pixels
My apologies! It shouldn't be too hard to add fully customizable colors, though probably without …
»
Flyingsand
Not long ago, due mainly to curiosity, I began porting my hobby game to iOS. Until then I support…
»
Miles
Hiding "advanced" UI is an antipattern for wimps. I think it's fair to say this application is ai…
»
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 want…
»
Martijn Courteaux
DawoodozYou also need to make sure that UV scales with changes in luma better. It's a fine balanc…
»
Simon Anciaux
Thanks for the post. It was interesting to see that you have similar issues than I did and someti…
»
Dawoodoz
In VB .NET, reallocating an array while one of the elements is passed by reference gives a run-ti…
»
Dawoodoz
I use the ini format (one assignment per row between key and value) for sprite maps in C++, becau…
»
Miles
OliverMarshDo c# & java keep the reference updated in the case the array reallocs? Is this a…
»
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 …
»
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 chan…
»