Bitwise operations in OPENGL ES

I am new to OpenGL ES and I am using OpenGL ES 2.0. Can I use bitwise operations (right shift, left shift) in the fragment shader.

+4
source share
1 answer

OpenGL ES 2.0 does not have bitwise operators. ES 3.0+, of course.

+4
source

Source: https://habr.com/ru/post/1438787/


All Articles