How can I make my custom point shader the same color as the default shader?

Try wrapping the final gl_FragColor in linearToOutputTexel(vec4 color):

gl_FragColor = linearToOutputTexel(vec4(vColor, 1) );
2 Likes