nlisker

Results 233 comments of nlisker

At first I couldn't reproduce these, then I found out the launch command of the test app points to the wrong build artifacts, so any changes I made were not...

For reasons that I don't understand, the problem was the order of the semantics declared in the `vs2ps` struct. Moving `float2 texD : texcoord0;` down fixed the issue. I played...

> I tested this behavior at commit [bb9f802](https://github.com/openjdk/jfx/commit/bb9f80263d4565cad1f485a59228064ca53d2d96), and can't observe any visual difference with regards to the order of `texD` in the `PsInput` struct. Adding two points lights works...

The ambient light issue was on the Java side. The purple light is probably just a false observation because it starts in a position where it doesn't apply its light....

> Btw, I can confirm that yes, this fixed it for me. Specifically, commit [55fe2dc](https://github.com/openjdk/jfx/commit/55fe2dc7371f6dcb12c414c5d672728e47e9c504) has resolved my issue. If you have time, it would be interesting check if it...

The change that moved `float2 texD : texcoord0;` from the beginning to the end is the one that fixed it for me, and apparently for you. If you can move...