glTexSubImage2d vs WEBGL's GL.texSubImage2d

Too lazy to dig through all this? Visit me on twitch and I'll help you, since I obviously know!

www.twitch.com/KanjiCoder

www.twitch.com/KanjiCoder

 I could get GL.texSubImage2D working... but when I tried to use the OpenGL version... I noticed an initial offset into the cpu-side bitmap (rgba byte array) was NOT a parameter to the OpenGL version of the function.

Here are my fix notes for OpenGL call:

QUESTION( via facebook):

I can get WebGL's "texSubImage2D" to work... But no luck in OpenGL. The signature for WEBGL includes a "stride". But the OpenGL signature does not. Think that is what is messing me up? ANSWER( answered my own question later on facebook)

Answer:
Because OpenGL's version does NOT include an initial offset into the data like WebGL's version, you need to do some pointer math on the uint8_t byte array on CPU side that houses your image.
I have a 512x512 bitmap on CPU side.
I have a 512x512 texture on GPU side.
To update a 32x32 section of 512x512 texture using a selection rectangle
from the 512x512 bitmap, you must specify:
STATE:
1. Unpack alignment( 4 because I use RGBA, 4 bytes per pixel)
2. Row alignment (stride, in pixels for me)
3. First byte of data strip in glTexSubImag2D call.
To get item 3, your last param to glTexSubImage needs to be something
along the lines of this:
&( my_cpu_side_bitmap[
( top_left_pixel_of_selection_rect_x + (top_left_pixel_of_selection_rect_y * 512 ) ) * 4
]
4 is because RGBA, 4 bytes per pixel.
512 is the pixel stride of an RGBA bitmap byte array.
In general, we are using an XY-to-INDEX formula and then
multiplying by the components per pixel size.

If you need more info on how his works.... You can download my code base from github.

https://github.com/KanjiCoder/AAC2020

https://github.com/KanjiCoder/AAC2020

The relevant function you want is:

aac2020_tausync_glTexSubImage2D

Within this file:

https://github.com/KanjiCoder/AAC2020/blob/master/LIB/TAUSYNC.F._

-John Mark Isaac Madison



Comments

Popular posts from this blog

How to compile C without an IDE

Clean Code Sucks , Make Up New Words!

0x400000