pixel icon indicating copy to clipboard operation
pixel copied to clipboard

Shaders don't seem to apply to drawn text

Open 3ter opened this issue 3 years ago • 1 comments

When I'm drawing text in a window to which a fragment shader is set (e.g. like in the wavy shader example) it looks rather garbled image It looks like down there the whole atlas is drawn (abc...) although only fmt.Fprintln(basicTxt, "Hello, text!") was added to the basicTxt drawn.

And the black boxes could be the shader not knowing the output color.

I thought that both the image and the text was drawn to the canvas and therefore it should be treated as an entity and subject to the shader. This doesn't seem to be the case. Any help appreciated.

3ter avatar Oct 08 '20 16:10 3ter

This may be related to the bug I opened: #305

I think the examples were written with only the examples in mind. The shader code assumes everything has a texture because only one texture is being drawn. Looking at the standard shader that pixel uses if you don't specify one shows how to mix color and texture values.

coreyog avatar Mar 09 '22 17:03 coreyog