Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
626 views

Android NDK OpenGL ES 2.0 Texture Pitch

Is there any way to blit a texture in opengl es 2.0 with a pitch that differs from its width. Normally I would fix this by using a PBO or adjusting the GL_PACK_ROW_LENGTH via glPixelStore. However ...
4
votes
1answer
112 views

When can I release a source PBO?

I'm using PBOs to asynchronously move data between my cpu and gpu. When moving from the GPU i know I can delete the source texture after I have called glMapBuffer on the PBO. However, what about the ...
2
votes
1answer
30 views

glUnmapBuffer while keeping glMapBuffer memory valid as read-only

Is it possible to glUnmapBuffer a GL_STREAM_DRAW pixel-buffer-object and still keep the data pointed to by the pointer returned previously by glMapBuffer valid for read-only operations using SSE 4.1 ...
2
votes
1answer
51 views

Allocating PBOs on separate thread?

I've got a multithreaded OpenGL application using PBOs for data transfers between cpu and gpu. I have pooled the allocation of PBOs, however, when the pools are empty my non-opengl threads have to ...
2
votes
2answers
106 views

Opengl Unsynchronized/Non-blocking Map

I just found the following OpenGL specification for ARB_map_buffer_range. I'm wondering if it is possible to do non-blocking map calls using this extension? Currently in my application im rendering ...
2
votes
1answer
703 views

OpenGL/PBO pixel drawing example needed

I need to draw pixels very fast on a screen. I found this interesting page Fast pixel drawing library author posted: "Using an OpenGL texture along with a PBO seems to be the best choice. Thanks." ...
2
votes
2answers
1k views

Reading the pixels values from the Frame Buffer Object (FBO) using Pixel Buffer Object (PBO)

Can I use Pixel Buffer Object (PBO) to directly read the pixels values (i.e. using glReadPixels) from the FBO (i.e. while FBO is still attached)? If yes, What are the advantages and disadvantages ...
1
vote
1answer
213 views

Copying pixels directly into GPU memory with PBO in OpenGL ES 2.0

I read it should be possible to transfer pixel data directly inside the GPU memory using pixel buffer objects. What I'm not understanding is if PBO is supported in OpenGL ES 2.0. I found incoherent ...
1
vote
1answer
82 views

Storing RGBA32 pixels directly into an OpenGL ES texture

I'm using a library which provides me frames I have to blit to the screen. I allocate a buffer, and this library writes directly into this buffer. When I'm required, I have to blit a specified part of ...
0
votes
1answer
69 views

How to read a 3D texture from GPU memory with Pixel Buffer Objects

The title says it all... I'm writing data into a 3D texture from within a fragment shader, and I need to asynchronously read back said data into system memory. The only means of asynchronously ...
0
votes
2answers
140 views

opengl video freeze

I have an IDS ueye cam and proceed the capture via PBO to OpenGL (OpenTK). On my developer-pc it works great, but on slower machines the video freezes after some time. Code for allocating memory via ...
0
votes
1answer
92 views

Do i need to recreate a texture when using opengl/CUDA interoperability?

I want to manipulate a texture which I use in opengl using CUDA. Knowing that I need to use a PBO for this I wonder if I have to recreate the texture every time I make changes to the PBO like this: ...