Tagged Questions
The texture tag has no wiki summary.
14
votes
3answers
845 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 ...
12
votes
3answers
754 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 ...
10
votes
3answers
610 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
4answers
3k 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 ...
9
votes
2answers
3k 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 {
...
8
votes
3answers
3k 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 ...
6
votes
3answers
176 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
7k 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 ...
5
votes
2answers
956 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
1answer
229 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
3answers
2k 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
6answers
1k 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 ...
4
votes
3answers
156 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
140 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 ...
4
votes
1answer
389 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 ...
4
votes
2answers
140 views
iPad2 takes 0.5 seconds to copy a 1K image - is that the best I can do?
I'm working on an iPad app that displays lightmapped scenes. Loading the 20 or so 1Kx1K textures that are involved is taking a while, and when I started timing the various operations I found it was ...
4
votes
1answer
231 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 ...
4
votes
1answer
271 views
OpenGL - glBindTexture - premature optimisation?
I've seen sample code (most notably in iOS GL projects) where the current GL texture name is cached, and a comparison done before calling glBindTexture. The goal is to avoid unnecessary calls to ...
4
votes
1answer
2k 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?
4
votes
4answers
1k 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 ...
4
votes
2answers
231 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);
...
4
votes
3answers
671 views
When I load a texture as RGBA4444 in openGL, how much memory is consumed in the device?
How much memory will consume a texture loaded with this method ?
With this method, will a 1024x1024 texture consume 4MB anyway ? ( regardless of loading it as RGBA4444 ) ?
...
4
votes
3answers
326 views
Mapping texture to 3D objects in a batch process on the server
we have the following use case:
the user uploads her picture on a web server
at a later time - on the server - the picture(s) are mapped on predefined 3D objects and stored as normal images (png, ...
4
votes
1answer
2k 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 ...
4
votes
2answers
976 views
Texturing error on a Sphere
I have a number of spherical longitude/latitude coordinates for points on a sphere that I need to visualize. For that purpose, I transformed the points to cartesian coordinates and built a mesh of ...
4
votes
2answers
1k views
Texture Image processing on the GPU?
I'm rendering a certain scene into a texture and then I need to process that image in some simple way. How I'm doing this now is to read the texture using glReadPixels() and then process it on the ...
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 ...
3
votes
2answers
51 views
How to apply transformation in a specific portion of a texture
Lets say i have a rectangle
Now i wish to apply it transformations such as translating in the z direction and scalling as well on the lower-right corner of the texture.
How can i do that. ...
3
votes
0answers
108 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 ...
3
votes
1answer
130 views
Andengine weird texture issue
I'm trying to develop a game using Andengine. It's been a while since I last worked with andengine, so I downloaded the latest andengine.jar.
The Texture class changed to BitmapTextureAtlas
So I used ...
3
votes
1answer
122 views
Paint app, using framebuffer to render texture in OpenGL ES
I'm trying to make simple paint application, based on Apple's GLPaint. To draw a line, GLPaint draws an array of points with brush texture. With blending in OpenGL turned on, every point of that line ...
3
votes
2answers
726 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 = ...
3
votes
1answer
99 views
Capturing still image with ARDrone in the Free Flight example app (ARDrone)
I've been trying to grab still images from the ARDrone in the Free Flight example app that came from the SDK and I can't seem to find a clean way to do it. The SDK and the app are too heavily ...
3
votes
1answer
659 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
214 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
2answers
206 views
CUDA textures and clamping
Is there any way to clamp out of range texture addresses to a certain value? In my case, I want them to be set to a simple zero, but the address mode I need doesn't seem to exist.
Thanks.
Edit: Any ...
3
votes
3answers
601 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
148 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
3answers
385 views
Computing texture coordinates for a single tile with a texture atlas in OpenGL
I'm trying to use a texture atlas in a game program I'm writing in C#/OpenGl with the OpenTK library.
I loaded my texture atlas as a texture in OpenGL (dimension is 256x256) and each tile is 32x32.
...
3
votes
3answers
469 views
Depth test inverted by default in OpenGL, or did I got it wrong?
I've been playing around with OpenGL for a full week or equivalent.
After 2D I'm now trying 3D. I want to reproduce the 3D scene you can see in the third video on http://johnnylee.net/projects/wii/.
...
3
votes
1answer
140 views
Are the texture buffers flushed when an OpenGL ES (iPhone) context gets deallocated?
Or I have to glDeleteTextures, glDeleteTextures one by one them?
Or is there some kind of glDeleteAllTextures like function?
3
votes
0answers
499 views
image Texture Feature using Gabor filter
I have the following gabor filter to extract image texture feature..
a=imread('image0001.jpg');
a=double(a);
a=a-mean(a(:));
[r,c,l]=size(a);
K=5; S=6;
Uh=0.4;
Ul=0.05;
...
3
votes
1answer
5k views
Xna 4.0 3D Vertex example
I'm currently trying to make a simple square by combining two triangles, like in the tutorials by Riemer (Link to tutorial), but since a lot has changed from 3.x to 4.0, I find it difficult.
I would ...
3
votes
2answers
870 views
how to use glCopyImage2D
I'm trying something like
glEnable(texture_2d)
glBindTexture
glCopyTexImage2D
glDisable(GL_TEXTURE_2D);
I think glCopyTexImage2D won't work with a non-power of two image, so that's one problem; ...
3
votes
2answers
341 views
Has anybody got success in texture loading using a secondary thread on iphone?
I have been trying improve the performance of my game on iphone. Most of the cases, I do my all texture loading just before rendering the current frame. That makes big jerk in the frame rate. Anybody ...
3
votes
4answers
1k 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 ...
3
votes
2answers
1k views
Can I apply a texture to UIToolbar?
I tried doing this:
[toolbar setTint:[UIColor colorWithPatternImage:[UIImage imageNamed:@"thingFromMyBundle.png"]]];
but it just ended up black. At first I assumed you weren't allowed to "tint" ...
3
votes
1answer
215 views
Directx9 Specular Mapping
How would I implement loading a texture to be used as a specular map for a piece of geometry and rendering it in Directx9 using C++?
Are there any tutorials or basic examples I can refer to?
3
votes
1answer
826 views
Please help with an OpenGL ES (iPhone) multi-texturing (2D) code!
I have a texture from this PNG:
And another from this PNG:
They both have the same blend function:
glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
I want to see them on one single polygon first. ...
3
votes
1answer
198 views
Link to external texture file in self-contained XAML representing a 3D model
I have a XAML file representing a 3D model with textures.
I want to make the textures read from the same place the file is, or relative to it.
I read the file using a XamlReader, so I want the file ...