Search found 7 matches
- Fri Apr 26, 2024 2:57 pm
- Forum: Libraries and Tools
- Topic: Image to polygon converter
- Replies: 2
- Views: 14392
Re: Image to polygon converter
I know it's a year old post, but thank youu!! this's really what I need!
- Mon Oct 17, 2022 12:16 am
- Forum: Support and Development
- Topic: [SOLVED] Distortion Shader Doesn't Work on Android Version
- Replies: 6
- Views: 2432
- Sun Oct 16, 2022 1:35 pm
- Forum: Support and Development
- Topic: [SOLVED] Distortion Shader Doesn't Work on Android Version
- Replies: 6
- Views: 2432
Re: Distortion Shader Doesn't Work on Android Version
I solved it! The problem is rather simple tho :cry: :cry: Based on the wiki: On mobile devices, variables in pixel shaders use mediump (16 bit float) precision by default instead of 32 bit float, for performance reasons. This may cause numeric instability or visual artifacts for larger numbers. Use ...
- Sun Oct 16, 2022 2:56 am
- Forum: Support and Development
- Topic: [SOLVED] Distortion Shader Doesn't Work on Android Version
- Replies: 6
- Views: 2432
Re: Distortion Shader Doesn't Work on Android Version
And this's the .love file. Idk but I can't add more than 3 attachments in a single post.
- Sun Oct 16, 2022 2:53 am
- Forum: Support and Development
- Topic: [SOLVED] Distortion Shader Doesn't Work on Android Version
- Replies: 6
- Views: 2432
Re: Distortion Shader Doesn't Work on Android Version
Hey! Sorry for the late reply. Looks like the u coordinate is always 0 in the shader for some reason. Try returning the uv coordinates. vec4 effect(vec4 color, Image TEXTURE, vec2 uv, vec2 pc) { return vec4(uv, 0.0, 1.0); } Yea, I just realized that in android version, it render the most left pixel ...
- Sat Oct 15, 2022 10:54 am
- Forum: Support and Development
- Topic: [SOLVED] Distortion Shader Doesn't Work on Android Version
- Replies: 6
- Views: 2432
[SOLVED] Distortion Shader Doesn't Work on Android Version
Hello, this's my first post.
Ok, so the problem is:
I try so render a picture with distortion shader. It worked perfectly fine in the desktop version, but not in the android one. Any clue?
Ok, so the problem is:
I try so render a picture with distortion shader. It worked perfectly fine in the desktop version, but not in the android one. Any clue?
- Wed May 04, 2022 8:08 am
- Forum: Support and Development
- Topic: android: save file
- Replies: 3
- Views: 4564
Re: android: save file
It's been a while but thx