For questions related to textures in computer graphics.
25
votes
0answers
2k views
Texture coordinate Cocos3d [closed]
Here is how I put my texture on my object :
_obj = (CC3MeshNode *)[_world getNodeNamed:@"s0"];
_obj.material.texture = [CC3Texture textureFromFile:@"objTextureLayout.png"];
My object is loaded from ...
20
votes
5answers
4k views
Simplex noise vs Perlin noise
I would like to know why Perlin noise is still so popular today after Simplex came out. Simplex noise was made by Ken Perlin himself and it was suppose to take over his old algorithm which was slow ...
16
votes
4answers
2k views
Remove paper texture pattern from a photograph
I've scanned an old photo with paper texture pattern and I would like to remove the texture as much as possible without lowering the image quality. Is there a way, probably using Image Processing ...
15
votes
3answers
9k views
iOS4: how do I use video file as an OpenGL texture?
I'm trying to display the contents of a video file (let's just say without the audio for now) onto a UV mapped 3D object in OpenGL. I've done a fair bit in OpenGL but have no idea where to begin in ...
13
votes
2answers
6k views
CSS3 Radial Gradients with RGBA()
I am working on a website which uses multiple css3 gradients as overlay for a background tiled with texture image
site url: --snipped--
currently for header i am using following css:
#header {
...
12
votes
4answers
6k views
Packing rectangular image data into a square texture
I have N items of 2D image data that will be rectangular and I want to pack them into a single power of 2 texture as efficiently as possible.
A simple non-efficient and naive implementation of an ...
11
votes
1answer
11k views
Doing readback from Direct3D textures and surfaces
I need to figure out how to get the data from D3D textures and surfaces back to system memory. What's the fastest way to do such things and how?
Also if I only need one subrect, how can one read ...
10
votes
2answers
2k views
OpenGL - Associate Texture Coordinates Array With Index Array Rather Than Vertex Array?
Whenever we use an index array to render textured polygons with glDraw*Elements*, we can provide an array of vertices and an array of texture coordinates. Then each index in the index array refers to ...
10
votes
3answers
964 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 ...
9
votes
1answer
214 views
Sampling on the texel centers doesn't give proper results, OpenGL, C++
Not so long ago I had a problem with displaying a texture as I was using edges of texels as texture coordinates instead of centers of texels. This, in combination with linear blending gave a smooth ...
8
votes
4answers
4k views
How do I use texture on a sphere in three.js
I've downloaded a sphere example from: http://aerotwist.com/lab/getting-started-with-three-js/ and I can see the nice red sphere. I'd like to use a texture on it. I've tried this:
var texture = ...
8
votes
3answers
258 views
Texture not displaying properly - probably coordinates are wrong OpenGL, C++
I'll try to explain my problem with images. So this is a test texture I'm using for my OpenGL application:
As you can see, there is a 2-pixels wide border around the image with different colors for ...
8
votes
2answers
3k views
What exactly is a floating point texture?
I am trying to wrap my head around floating point textures, but I am finding it hard to find any good resources which explain them to me.. I tried reading the OpenGL ARB_texture_float spec, but I ...
8
votes
1answer
128 views
OpenGL Textures form SDLSurface goes too dark
I've quite the same problem than this OpenGl goes too dark but the answer doesn't work for me. I'm trying to display a image thanks to a surface converted to a texture and the result is too damn dark:
...
7
votes
3answers
21k views
How to apply texture to glutSolidCube
I can find tutorials about mapping textures to polygons specifying vertices etc. but nothing regarding how to apply a texture to a cube (or other stuff) drawn with glut (glutSolidCube).
I am doing ...
7
votes
1answer
231 views
CUDA: Is the texture cache on FERMI separate from L1 cache?
Does it make sense to rewrite the code so that it loads data trough texture cache ( assuming that i don't need filtering and other texture unit options) or is it the same? How about loading some data ...
7
votes
1answer
2k views
Custom Texture Shader in Three.js
I'm just looking to create a very simple Fragment Shader that draws a specified texture to the mesh. I've looked at a handful of custom fragment shaders that accomplished the same and built my own ...
7
votes
1answer
2k views
Convert 3D model to SceneJS JSON, including texture
Motive
I'm trying to create a small demo application using WebGL. I chose to use SceneJS, because it seemed an easy framework and would more than suffice for this purpose.
I have downloaded a couple ...
6
votes
3answers
4k views
Stretch background image for UIButton
I got texture, which really shorter, than my UIButton.
I got this texture:
And i should create this button:
How should i stretch (not tile), this texture? Stretching in horizontal direction
...
6
votes
3answers
823 views
What is the range of OpenGL texture ID?
I have an object which owns a property Texture_ID. I need to initialize the value for Texture_ID in constructor, so I want some value unused by OpenGL to present that the texture is not yet set.
I ...
6
votes
1answer
5k views
Is it possible using video as texture for GL in iOS?
Is it possible using video (pre-rendered, compressed with H.264) as texture for GL in iOS?
If possible, how to do it? And any playback quality/frame-rate or limitations?
6
votes
1answer
4k 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 ...
6
votes
1answer
454 views
Texture Sampling Coordinates to Render a Sprite
Let's say we have a texture (in this case 8x8 pixels) we want to use as a sprite sheet. One of the sub-images (sprite) is a subregion of 4x3 inside the texture, like in this image:
(Normalized ...
6
votes
1answer
4k views
Floating Point Textures in OpenGL ES 2.0
I've been trying to figure out how to use float textures in GLES2. The API Reference (http://www.khronos.org/opengles/sdk/docs/man/glTexImage2D.xml) says that only unsigned bytes and shorts can be ...
6
votes
1answer
245 views
Border around texture, OpenGL
This is a code I use to draw rectangle in my program:
glBegin(GL_QUADS);
glTexCoord2f(0.0f, maxTexCoordHeight); glVertex2i(pos.x, pos.y + height);
glTexCoord2f(0.0f, 0.0f); ...
6
votes
1answer
444 views
How to use glDrawElements while keeping Texture Coordinates correct?
I'm using/targetting OpenGL 4.20, GSLSL 4.20, core. Using C.
I'm exploring graphics with OpenGL and have decided to make a tile based game. I'm at the point where i'd like to actually draw a bunch of ...
6
votes
1answer
2k views
How to use GL_HALF_FLOAT_OES typed textures in iOS?
I'm trying to create a float texture to store intermediate results of my rendering pipeline created by a fragment shader. I need the values of the fragments to be signed floats.
I understand that ...
6
votes
5answers
3k views
How to read successfully from a 2D texture
How can I:
Bind cudaMallocPitch float memory to a 2D texture reference
Copy some host data to the 2D array on the device
Add one to the texture reference and write to either a.) the Pitch 2D array ...
6
votes
2answers
397 views
OpenGL texture randomly not shown
I have got a very, very strange problem in my C++ OpenGL application.
I simply load a texture and apply it to a quadric:
glGenTextures(1, &tex);
glBindTexture(GL_TEXTURE_2D, tex);
...
6
votes
0answers
495 views
Abysmal OpenCL ImageSampling performance vs OpenGL TextureSampling
I've recently ported my volumeraycaster from OpenGL to OpenCL, which decreased the raycaster's performance by about 90 percent. I tracked the performance decrease to the OpenCL's imagesampling ...
5
votes
5answers
5k views
Loading PNG textures to OpenGL
I'm working on a game, and all of my graphics use magenta as transparent/magic color.
They are all 32-bit and the magenta is just for conveniency.
Anyway, I would appreciate if someone could advice me ...
5
votes
2answers
2k views
glPixelStorei(GL_UNPACK_ALIGNMENT, 1) Disadvantages?
What are the disadvantages of always using alginment of 1?
glPixelStorei(GL_UNPACK_ALIGNMENT, 1)
glPixelStorei(GL_PACK_ALIGNMENT, 1)
Will it impact performance on modern gpus?
5
votes
2answers
2k views
How to match texture similarity in images?
What are the ways in which to quantify the texture of a portion of an image? I'm trying to detect areas that are similar in texture in an image, sort of a measure of "how closely similar are they?"
...
5
votes
3answers
4k views
OpenGL Texture transparency doesn't work
I'm having an OpenGL texture that is binded to a simple quad.
My problem is: My texture is 128x128 pixels image. I'm only filling up about 100x60 pixels on that image, the other pixels are ...
5
votes
3answers
2k views
Loading texture for OpenGL with OpenCV
I have seen many code samples for loading textures for OpenGL, many of them a bit complicated to understand or requiring new functions with a lot of code.
I was thinking that as OpenCV allows us to ...
5
votes
1answer
415 views
XNA Adding Craters (via GPU) with a “Burn” Effect
I am currently working on a 2D "Worms" clone in XNA, and one of the features is "deformable" terrain (e.g. when a rocket hits the terrain, there is an explosion and a chunk of the terrain disappears). ...
5
votes
2answers
3k views
Full screen background texture with OpenGL performance issue (iPad)
I am quite puzzled with the poor performance I'm seeing when drawing a full screen background using a textured triangle mesh in OpenGL: drawing just the background and nothing else maxes out at 40 fps ...
5
votes
2answers
3k views
WebGL: Texture access in a vertex shader?
Is it possible to read from a texture in a vertex shader with WebGL?
I wrote a WebGL page (just to try it out) and used Chrome 7 to test it. As soon as I upgraded to Chrome 8, it stopped working. I ...
5
votes
1answer
73 views
How to copy texture1 to texture2 efficiently?
I want to copy texture1 to texture2.
The most stupid way is copying tex1 data from GPU to CPU, and then copy CPU data to GPU.
The stupid code is as below:
float *data = new float[width*height*4];
...
5
votes
3answers
7k views
Using QImage with OpenGL
I've very recently picked up Qt and am using it with OpenGL
The thing though is that when moving my SDL code to Qt and changing the texture code to use QImage it stops working.
The image does load ...
5
votes
5answers
2k views
OpenGL texture atlas bleeding
I'm trying to draw a basic 2d ground mesh made up of smaller tiles from a texture atlas (note the 1 pixel transparent border):
I render the tiles as texture quads using the following code:
...
5
votes
7answers
2k views
Is there a faster alternative to using textures in XNA?
I am writing a map editing program for a 2D game using XNA. To create a Texture2D for all of the tiles that a map requires takes too long.
Are there any alternatives to using textures for drawing ...
5
votes
1answer
534 views
texturing using texelFetch()
When I pass non max values into texture buffer, while rendering it draws geometry with colors at max values. I found this issue while using glTexBuffer() API.
E.g. Let’s assume my texture data is ...
5
votes
1answer
515 views
Procedural / Dynamic colouring of a skybox in OpenGL
I have been developing an application that needs to render a procedural sky, what I mean by this is that the sky has a day night cycle that changes depending on what time it is within the simulation.
...
5
votes
3answers
1k views
OpenGL ES: How to tint texture with color
I have texture with alpha. And I want to tint it with some color, so it will be colored depending on color alpha value, but overal opacity will be defined only by texture alpha.
This is similar to ...
4
votes
2answers
6k views
What is the maximum texture size available on the iPad?
Anyone know the maximum texture size for the iPad? I'm having trouble finding numbers for this.
4
votes
3answers
2k views
How can I apply 2 or more texture maps to a gluSphere OpenGL object?
I'm writing a basic planet viewer OpenGL Perl application, just for fun.
I have the basics working, with the glorious planet, implemented through a gluSphere(), rotating with the classic earth texture ...
4
votes
2answers
4k views
How to programmatically alpha fade a textured object in OpenGL ES 1.1 (iPhone)
I've been using OpenGL ES 1.1 on the iPhone for 10 months, and in that time there is one seemingly simple task I have been unable to do: programmatically fade a textured object. To keep it simple: how ...
4
votes
2answers
85 views
opengl, textures have always the same size
I'm trying to apply a texture to a vertex array whit the following code:
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, texture);
glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
...
4
votes
1answer
3k views
WebGL create Texture
I successfully created a WebGL texture from an image and drew it into a canvas element.
function initTexture(src) {
texture = gl.createTexture();
texture.image = new Image();
...

