Quantcast
Channel: openFrameworks - Latest posts
Viewing all articles
Browse latest Browse all 40524

Getting int32 into shader

$
0
0

nice. :smile:

.
allocating the buffer and texture like this:

// instance variables
ofBufferObject pixelBufferDist;
ofTexture texDist;

// later, setup
pixelBufferDist.allocate();
pixelBufferDist.bind(GL_TEXTURE_BUFFER);    
pixelBufferDist.setData(vector<uint32>, GL_STREAM_DRAW);

texDist.allocateAsBufferTexture(pixelBufferDist, GL_R32UI);
                
// set texture
shader.begin();
shader.setUniformTexture("texDist", texDist, 0);    
shader.end();

updating the data like this:

pixelBufferDist.updateData(0, vector<uint32>);

Viewing all articles
Browse latest Browse all 40524

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>