Vasiliy Tereshkov

Results 122 comments of Vasiliy Tereshkov

@skejeton One more warning now: ``` src/main.c:371:1: warning: control reaches end of non-void function ``` By the way, why do we need this `WinMain()` at all?

This feature appears to be unnecessary for my FEM demo (a constant stress throughout a triangle means a constant color). We can close the issue as not planned.

@skejeton Not that simple. You seem to ignore the _order_ in which the translation, rotation and scaling are applied. Even without rotations, the correct inverse is ``` result := {p:...

@skejeton The `th.um` documentation defines the following order: ``` scale rotation position ``` So the inverse should be ``` -position -rotation 1 / scale ``` The origin parameter seems to...

At least it requires a permanent access to an ARM platform. Even when you have it, a new build always means a lot of testing, which is only justified by...

On my WSL, everything works fine in both English and Russian layouts. Physically it's QWERTY, of course.

@skejeton Do you mean we need to implement switching the input focus between the text area and the example window? Are you sure this is possible with the official Sokol?...

I tested the moving rectangle example with the latest version. The only problem is that the WASD keys, when entered in the text area, are also caught by the example...

Ubuntu 20.04 (WSL), x86-64.

Here is an example program `test1.c`: ``` int main() { return 42; } ``` If I run ``` gcc test1.c -o test1gcc ./xcc test1.c -o test1xcc ``` I get the...