Does WebGL support color formats with more than 32bit?
问题 I can't seem to find any texture format with more than 32 bit (GL.RGBA). Is this not supported by WebGL ? 回答1: By 32bit you mean where each element is 32bit itself or each element is 8bits and in sum they are 32 bits (8 bits of red, 8 bits of green, 8 bits of blue, 8 bits of alpha)? In any case there are extensions for 32bit float formats in WebGL so 32bits of red, 32bits of green, 32bits of blue, 32bits of alpha which is 128bit texture format. Those extensions are OES_texture_float. Let's