Tagged Questions
Textures are series of images used in computer graphics to associate locations on a visible surface with varying values. This association is typically done by mapping locations on the texture (usually two-dimensional, but other dimensions and types of textures exist) to locations on the rendered surface. Filtering is often used to smooth away aliasing when sampling values from the texture, usually involving multiple images within a texture called mipmaps.
9
votes
3answers
63 views
Opengl perspective distortion
I'm having this weird issue and I'm hoping someone could clear this up for me so I can understand what's wrong and act accordingly. In OpenGL (fixed-function) I'm rendering a tube with inner faces in ...
9
votes
3answers
352 views
Binding textures in OpenGL
So I'm rendering my scene in batches, to try and minimize state changes.
Since my shaders usually need multiple textures, I have a few of them bound at the same time to different texture units. Some ...
8
votes
1answer
565 views
Using OpenGL textures larger than window/display size
I'm having problems using textures that are larger than the OpenGL window or the display size as non-display render targets. What's the solution for this problem?
7
votes
1answer
672 views
Opengl ES 1.1/Android — The texture-mapping-to-a-square debacle of 2011
I am trying to map a texture onto a square where the texture stretches to fit the square. Currently the texture maps, but it doesn't map to the correct location and OGL performs some skewing or such ...
6
votes
1answer
167 views
How to generate textures to fit around shapes?
I have a randomly generated series of EdgeShapes, as shown here:
My question is, how can I fill that bottom area with a texture in order to make it look like the ground?
6
votes
3answers
112 views
Is it possible to view the data in the Graphics Card's memory?
I am curious about this. Is it possible to view what textures are currently being loaded into the RAM of the Graphics Card? For instance, if you open 2-3 highly intensive 3D games, is it possible to ...
5
votes
3answers
70 views
Need help understanding the differences and relationship between glActiveTexture and glBindTexture
From what I gather, glActiveTexture sets the active "texture unit". Each texture unit can have multiple texture targets (usually GL_TEXTURE_1D, 2D, 3D or CUBE_MAP).
If I understand correctly, you ...
5
votes
2answers
1k views
ffmpeg video to opengl texture
I'm trying to render frames grabbed and converted from a video using ffmpeg to an opengl texture to be put on a quad. I've pretty much exhausted google and not found an answer, well I've found answers ...
5
votes
2answers
255 views
Texture buffer objects or regular textures?
The OpenGL SuperBible discusses texture buffer objects, which are textures formed from data inside VBOs. It looks like there are benefits to using them, but all the examples I've found create regular ...
5
votes
1answer
613 views
How do I use texSubImage2D to show sprites in webgl?
I can display my entire sprite (32x512) successfully with this call to gl.texImage2D:
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, image);
It's squished horizontally, like I ...
5
votes
2answers
1k views
OpenGL fast texture drawing with vertex buffer objects. Is this the way to do it?
I am making a 2D game with OpenGL. I would like to speed up my texture drawing by using VBOs.
Currently I am using the immediate mode. I am generating my own coordinates when I rotate and scale a ...
5
votes
3answers
172 views
What is the correct behavior when both a 1D and a 2D texture are bound in OpenGL?
Say you have something like this:
glBindTexture(GL_TEXTURE_2D, my2dTex);
glBindTexture(GL_TEXTURE_1D, my1dTex);
glBegin...
What is the correct OpenGL behavior? To draw the 1d texture, the 2d or ...
5
votes
2answers
3k views
How do I texture map a cube in OpenGL ES?
Having a lot of trouble getting texture maps to work in openGL ES (iphone).
Here's what I've done:
built an array of vertexes
built an array of faces that reference the indices of the array of ...
5
votes
2answers
3k views
How to read back a CUDA Texture for testing?
Ok, so far, I can create an array on the host computer (of type float), and copy it to the gpu, then bring it back to the host as another array (to test if the copy was successful by comparing to the ...
5
votes
4answers
1k views
How to create a fractal cube?
I would like to render volumetric clouds in OpenGL.
I found an interesting paper that describes a simple technique to render volumetric clouds.
(http://www.inframez.com/events_volclouds_slide18.htm)
...
5
votes
3answers
2k views
What are the usual troubleshooting steps for OpenGL textures not showing?
After making a few changes in my application, my textures are no longer showing. So far I've checked the following:
The camera direction hasn't changed.
I can see the vectors (when colored instead ...
5
votes
2answers
1k views
What is the preferred way to show large images in OpenGL
I've had this problem a couple of times. Let's say I want to display a splash-screen or something in an OpenGL context (or DirectX for that matter, it's more of a conceptual thing), now, I could ...
5
votes
3answers
893 views
OpenGL textures with multiple display contexts
I have an undefined number of display context and each will display a texture. When I call glGenTextures I get the same name returned across all display contexts. Will this work? Even though they have ...
5
votes
6answers
1k views
Textured spheres without strong distortion
I've seen well-textured balls, planets, and other spherical objects in couple of games, last time in UFO: aftermath. If you just splatter a texture into latitude/longditude as u and w -coordinates ...
4
votes
1answer
92 views
glPopMatrix() yells “unsupported texture format in setup_hardware_state”
I'm trying to make some optimizations in a private video player for Linux aiming to improve performance because playing MP4 files are heavy on the CPU, since the video frames are encoded in YV12 and ...
4
votes
1answer
121 views
Repeated textures are severely distorted/shaking when rotating camera
I originally asked this question on gamedev, but none of the answers helped to solve problem, and I still have no clue what is the real cause. I didn't see anything about re-posting questions across ...
4
votes
1answer
821 views
Android OpenGL Textures look terrible on Sprint Samsung Galaxy s2 Epic Touch 4g
Let me preface by admitting I am an open gl novice - its nothing short of a miracle I've made it this far with the game I've been developing.
Textures look fine on the HTC Evo 3d, Droid Bionic, and ...
4
votes
1answer
92 views
How much more efficient are power-of-two textures?
I am creating an OpenGL video player using Ffmpeg and all my videos aren't power of 2 (as they are normal video resolutions). It runs at fine fps with my nvidia card but I've found that it won't run ...
4
votes
1answer
894 views
OpenGL Hemisphere Texture Mapping
I need to have a hemisphere in opengl. I found a drawSphere function which I modified to draw half the lats (which ends up drawing half of the sphere) which is what I wanted. It does this correctly.
...
4
votes
5answers
1k views
png image blurry when loaded onto texture
I have created a png image in photoshop with transparencies that I have loaded into and OpenGL program. I have binded it to a texture and in the program the picture looks blurry and I'm not sure why.
...
4
votes
1answer
1k views
Fastest possible way to render 480 x 320 background as iPhone OpenGL ES textures
I need to display 480 x 320 background image in OpenGL ES. The thing is I experienced a bit of a slow down in iPhone when I use 512 x 512 texture size. So I am finding an optimum case for rendering ...
4
votes
3answers
1k views
Does it make sense to use own mipmap creation algorithm for OpenGL textures?
I was wondering if the quality of texture mipmaps would be better if I used my own algorithm for pre-generating them, instead of the built-in automatic one. I'd probably use a slow but pretty ...
4
votes
4answers
978 views
Dynamically alter or destroy a Texture2D for drawing and collision detection
I am using XNA for a 2D project. I have a problem and I don't know which way to solve it. I have a texture (an image) that is drawn to the screen for example:
|+++|+++|
|---|---|
|+++|+++|
Now I ...
4
votes
7answers
4k views
Simple OpenGL texture map not working?
I'm trying to figure out texture mapping in OpenGL and I can't get a simple example to work.
The polygon is being drawn, though it's not textured but just a solid color. Also the bitmap is being ...
4
votes
6answers
2k views
How to I draw pixels as a texture to a polygon in OpenGL?
In C++ OpenGL, I want to draw each pixel manually (as a texture I assume) on to a simple square primitive, or indeed 2 polygons forming a square.
I have no idea where to start, or what phrases to ...
4
votes
5answers
3k views
How to use GL_REPEAT to repeat only a selection of a texture atlas? (OpenGL)
How can I repeat a selection of a texture atlas?
For example, my sprite (selection) is within the texture coordinates:
GLfloat textureCoords[]=
{
.1f, .1f,
.3f, .1f,
.1f, .3f,
...
4
votes
1answer
1k views
OpenGL and monochrome texture
Is it possible to pump monochrome (graphical data with 1 bit image depth) texture into OpenGL?
I'm currently using this:
glTexImage2D( GL_TEXTURE_2D, 0, 1, game->width, game->height, 0, ...
3
votes
3answers
68 views
glColor coloring all textures
I'm fairly new to OpenGL so maybe the answer will be obvious. I am currently trying to make a blue circle using GL_TRIANGLE_FAN in C++. My problem is that when I set the color using glColor4f, it ...
3
votes
3answers
126 views
OpenGLES 2.0 separate buffers for vertices, colors and texture coordinates
I've been learning OpenGL for a few days now by following some tutorials and coding some experiments of my own. But there is one thing I really don't understand which blocks me from continuing. I've ...
3
votes
1answer
129 views
Texture2D is turning black
I have a Texture2D that I'm loading from the Content Pipeline. That's working fine, but as soon as I try to use SetData on a completely different Texture2D all of the textures in my game go completely ...
3
votes
1answer
63 views
OpenGL texture generation
I'm currently trying to figure out how to use OpenGL. I want to create a texture from a byte buffer.
For some reason, when I do it with glTexImage2D, it does not work (the texture comes out blank):
...
3
votes
1answer
234 views
How to fill each side of a cube with different textures on OpenGL ES 1.1?
Please, I need tutorials/code examples of how to fill each side of a cube with different textures on OpenGL ES 1.1
I found a lot of tutorials but none of them explain clearly how to put different ...
3
votes
1answer
208 views
Android Andengine poor texture quality
The problem: poor texture quality in android app written with Andengine(wraps opengl), especially on gradients which appear as steps in few colours. Problem occurs on real and virtual device
...
3
votes
2answers
109 views
WebGL and rectangular (power of two) textures
WebGL is known to have poor support for NPOT (non-power-of-two) textures. But what about rectangular textures where both width and height are powers of two? Specifically, I'm trying to draw to a ...
3
votes
2answers
104 views
Rendering 1.2 GB of textures smoothly, how does a 1 GB GPU do this?
My goal is to see what would happen when using more texture data than what would fit in physical GPU memory. My first attempt was to load up to 40 DDS textures, resulting in a memory footprint way ...
3
votes
1answer
101 views
Selecting the face of a Cubemap in GLSL
Ok, I'm trying to understand how the face of a cubemap is selected using the coordinates supplied to textureCube(). From the spec, I gather the coord with the biggest magnitude defines the face.
For ...
3
votes
1answer
665 views
Programmatically creating directx 11 textures, pros and cons of the three different methods
The msdn documentation explains that in directx 11 there are multiple ways to fill a directx 11 texture programmatically:
(1) Create the texture with default usage texture and initialize it with data ...
3
votes
2answers
215 views
How do I tell if the active texture is texture id 0 in GLSL?
I have model assets that are untextured and I am tired of rendering them as black without lighting. This is because if texture id 0 is bound and I ask the sampler it tells me its black. Later leading ...
3
votes
3answers
603 views
Multiple Textures OpenGL GLUT C++
Okay still having a few problems with it, this is what I have so far:
Bitmap Display::m_HeightMap;
unsigned int Display:: textures;
My initialise method:
glEnable(GL_TEXTURE_2D);
Bitmap ...
3
votes
1answer
302 views
glBindTexture() + glBegin(foo) slow?
I am building a small game for MacOS using Cocoa + OpenGL to create the GUI. The game is a BoulderDash-Clone, so its basically a 2D-array of objects, and not THAT many (a level is like 40 objects wide ...
3
votes
1answer
150 views
POVRay “Contour line” Texture
Can someone please tell me how I can do the following with a POVRay texture...
//PseudoCode
texture {
pigment {
if(y mod 5 == 0) {
color rgb 0
} else {
...
3
votes
1answer
304 views
How to efficiently display custom video stream in OpenGL?
I have a custom library that can decode to RGBA or any other format.
What is the best way to marry it with OpenGL to decode onto texture so that it won't drop frames ?
Or is there a better way ...
3
votes
2answers
436 views
Android Opengl ES dark pixels on edge of objects
Hi all
I would like to draw you attention to the following pictures
First the original image
then how it is rendered on the screen
as you can see on the original everything is nice and yellow, ...
3
votes
3answers
2k views
Can OpenGL ES render textures of non base 2 dimensions?
This is just a quick question before I dive deeper into converting my current rendering system to openGL. I heard that textures needed to be in base 2 sizes in order to be stored for rendering. Is ...
3
votes
2answers
468 views
In computer graphics, what's the difference between a UVW mapping and a UV mapping?
In working with textures, does "UVW mapping" mean the same thing as "UV mapping"?
If so why are there two terms, and what is the "W"?
If not, what's the difference between them?
[Wikipedia ...