Tagged Questions
2
votes
1answer
247 views
Mapping dynamic texture causing “Already Mapped Error”
I just starting using Direct3D11 and I am trying to create a dynamic texture that I plan to update with new data several times a second. My issue is that every time I update the texture with the new ...
1
vote
2answers
951 views
Need help with 2D textures on CUDA. Not getting the expected value for the indexes I want
I have two matrices (A and B), 2-dimensions. And i think i'll speed up a bit if instead of putting it into global memory and access via pointers, i put them into textures 2d and use it. The matrices ...
1
vote
1answer
462 views
How to Draw pixel data taken from the backbuffer back to itself?
I'm working on a mobile application for Symbian 5th edition using OpenGLES.
This application is a pretty standard 2D app, and I make no use of the DepthBuffer.
I need to grab a snapshot of the ...
0
votes
3answers
61 views
OpenGL texture not working
I'm trying to learn how to use textures in OpenGL. I started reading the chapter on texture mapping in OpenGL Redbook. I didn't understand it so I googled and found this tutorial. I followed ...
0
votes
1answer
191 views
how to draw textures using stb_image.c
I want to load this picture into a 2d texture and then draw it onto the screen. The main problem is loading the picture into a texture variable. The follow code output the correct width and height and ...