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…
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…
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…
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…
Awesome! If you're planning to make it publicly available at some point, do you expect you'll eve…
DawoodozI usually keep one pointer iterating over rows by adding a stride after each row. Then I …
mmozeikoWhat is performance comparison Neon vs C code? If you get at least 2x speedup - that's go…
mcourteaux
By, UV, you mean chromaticity? In the YUV color model, which is a linear transform fro…
I usually keep one pointer iterating over rows by adding a stride after each row. Then I assign t…
notnullnotvoidThus every object referenced in an array is individually allocated on the heap and …
What is performance comparison Neon vs C code? If you get at least 2x speedup - that's good.
ARM …
My apologies! It shouldn't be too hard to add fully customizable colors, though probably without …
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…
I think the point of the script is for cute exporter to generate data in any format the user want…
DawoodozYou also need to make sure that UV scales with changes in luma better. It's a fine balanc…
Thanks for the post. It was interesting to see that you have similar issues than I did and someti…
In VB .NET, reallocating an array while one of the elements is passed by reference gives a run-ti…
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! :)
Arrow icons are barely legible, as are the line numbers in the source window, and changed values …
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 chan…