Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
3k views

Texture mapping in MATLAB

I have points in 3D space and their corresponding 2D image points. How can I make a mesh out of the 3D points, then texture the triangle faces formed by the mesh? Update See answer
6
votes
2answers
3k views

Image manipulation and texture mapping using HTML5 Canvas?

In a 3D engine I'm working on I've succesfully managed to draw a cube in 3D. The only method to fill the sides is using either a solid color or gradient as far as I'm concerned. To make things more ...
5
votes
1answer
584 views

pixel perfect texture mapping with modern OpenGL

After deciding to try programming in modern OpenGL, I've left behind the fixed function pipeline and I'm not entirely sure about getting the same functionality I had before. I'm trying to texture map ...
5
votes
2answers
449 views

OpenGL Texture Mapping

Hey Guys, I'm new to game programming and graphics programming. However, I eagerly wish to learn, so I have begun building a game engine with OpenGL. I have implemented all of the basic graphical ...
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 ...
4
votes
1answer
187 views

Canvas fast texture mapping

I'm making a top-down game with simple 3d graphics. (I'd be happy if it were like gta 2.) I've implemented affine texture mapping that I have found here but it is too CPU intensive. So my question ...
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
346 views

texture mapping a trapezoid with a square texture in OpenGL

I've been trying to render a GL_QUAD (which is shaped as a trapezoid) with a square texture and wanted to know if there was a good tutorial for pulling this off. I'd like to try and use OpenGL only to ...
4
votes
3answers
2k views

OpenGL: Trouble with Render to Texture & Framebuffer Object

I'd like to render a scene to an initially empty texture. To do so, I use a Framebuffer Object to which I attach an empty 2d texture and a depth buffer. After the set up, as for testing, I draw a ...
4
votes
1answer
67 views

Ratio of multipass textures compared to the color map

I have 4 textures used in a multi-pass effect with the color map at the highest quality - which for this example is 512x512. Currently the Normal, Specular & Parallax maps are the same dimensions. ...
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
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, ...
3
votes
1answer
63 views

How to map a photo onto 3D surface in PHP?

I'm working on product customization webapp and I ran into problem how to map user uploaded images or texts onto complex 3D surfaces in my website back-end. It is easy to apply simple skew and there ...
3
votes
2answers
232 views

How can I texturize the inside of Model (Mesh-Sphere)

Recently I have had my first successful experience with textures on a sphere. I was thinking how about if we could textured the inside of Models. Like have a big sphere and display everything inside ...
3
votes
4answers
642 views

OpenGL - 2D Texture Mapping

I'm trying to render a simple texture(64x64) to a 64x64 quad. The quad itself is rendering, but, not the texture. (It's rendering a blank white 64x64 quad.) I'm using SOIL to load the image. static ...
3
votes
2answers
561 views

OpenGL 3D textures and mapping on part of a quad

I'm making a Minecraft-ish terrain engine to learn some OpenGL and 3D and everything works fine except for the FPS which I'm not happy with. The current: I'm currently only drawing the visible ...
3
votes
4answers
576 views

OpenGL, applying texture from image to isosurface

I have a program in which I need to apply a 2-dimensional texture (simple image) to a surface generated using the marching-cubes algorithm. I have access to the geometry and can add texture ...
3
votes
3answers
348 views

“sphere in a bag” plane to sphere projection

I'm looking for the mathematical transformation to transform points on a 2D plane [0,1]x[0,1] onto the unitsphere. The most common projection would latitude-longitude mapping by interpreting u and v ...
3
votes
2answers
87 views

Texturing a model

I have coded a 3d-terrain engine with simplistic model engine on top of it. I use a rectangular heightmap for my terrain, so texturing those triangles is pretty straightforward. However, on ...
3
votes
1answer
69 views

What does setting the GL color before doing a texture mapping operation do?

I am looking at some sample code in a book that creates a jittered antialiasing effect by repeatedly rendering a scene (at different offsets) onto a offscreen texture, then using that texture to ...
3
votes
2answers
1k views

OpenGL: Disable texture colors?

Is it possible to disable texture colors, and use only white as the color? It would still read the texture, so i cant use glDisable(GL_TEXTURE_2D) because i want to render the alpha channels too. All ...
3
votes
2answers
2k views

How do I draw a texture-mapped triangle in MATLAB?

I have a triangle in (u,v) coordinates in an image. I would like to draw this triangle at 3D coordinates (X,Y,Z) texture-mapped with the triangle in the image. Here, u,v,X,Y,Z are all vectors with ...
3
votes
2answers
278 views

Power of two textures

Can you explain me, why hardware acceleration required for a long time textures be power of two? For PCs, since GeForce 6 we achieved npot textures with no-mips and simplified filtering. OpenGL ES 2.0 ...
2
votes
1answer
178 views

How to draw plain colored surfaces in OpenGL ES?

I have a curved surface defined by a number of triangular faces. The entire surface has single color. So far I was drawing each triangle separately. For each triangle I was passing 3 vertices, 3 ...
2
votes
1answer
223 views

Texture coordinates for dynamic terrain - OpenGL

Can someone please describe a common technique used to calculate texture coordinates for a terrain that dynamically changes every frame? I have a perlin noise function implemented in a vertex shader ...
2
votes
2answers
383 views

How to map texture to cylinder in unmanaged DirectX?

In C#.net I have a mesh cylinder with a dynamic diameter and length and am trying to map a texture to it. I have spent the better part of a day trying to find out how to do so but have had no success ...
2
votes
3answers
248 views

undistorted texture coordinates

How do you calculate UV coordinates for points on a plane? I have a polygon - 3 or 4 or more points - that is on a plane - that is to say, all the points are on a plane. But it can be at any angle ...
2
votes
2answers
335 views

HLSL Multi-texturing with Fog problem in Direct3D

hey guys I am trying to implement a multi-texturing and fog on some terrain in my demo, but apparently i am going wrong somewhere because the texturing is not visible, the only thing that is being ...
2
votes
2answers
582 views

OpenGL ES Tiled Texture Mipmap problem - iPad/iPhone

I'm running into the traditional tile/mipmap problem on the iPad using OpenGL ES. Basically, if you have a large texture (larger than 1k X 1k), you can break it up into pieces and map those pieces ...
2
votes
2answers
852 views

Texture Mapping C++ OpenGL

I have read around on this, including Nehe and here for solutions, but I cant find a specific answer. I am trying to load a a photo, called stars.jpg. I want to make this my background of the scene, ...
2
votes
1answer
626 views

Mapping textures to a sphere OpenGL ES

Right i am just getting into OpenGL ES, and if i am honest it is very daunting. Just need a little guidance to point me in the right direction for my current challenge. I have some code that ...
2
votes
1answer
257 views

Image loading in OpenGL for use in GIS appliation

I am currently working on an in house GIS app. Background images are loaded in OpenGL by breaking the image down into what I guess are termed texels and mipmapped, after which a display list is built ...
2
votes
2answers
568 views

rectangular texture in OpenGL with both width and height POT

I'm trying to use rectangular texture with OpenGL. When the height is equal to the width of the texture, everything looks fine, however, when the height is different than the width the texture looks ...
2
votes
5answers
783 views

Mapping irregular shapes or other polygons (cartoons, sprites) to triangles in OpenGL ES

I don't understand the concept of showing sprites mapped into OpenGL Triangles. If OpenGL ES only draws triangles and points, How do you display/map non-triangular shapes? Why would a shape mapped ...
2
votes
2answers
635 views

How do I use texture-mapping in a simple ray tracer?

I am attempting to add features to a ray tracer in C++. Namely, I am trying to add texture mapping to the spheres. For simplicity, I am using an array to store the texture data. I obtained the texture ...
2
votes
1answer
835 views

Direct3D: Draw textured cube with single DrawIndexedPrimitives call. Possible?

I am trying to draw a textured cube using just 8 vertices and one DrawIndexedPrimitives call. Is this even possible? I am having problems with the UV co-ordinates. I am finding it impossible to come ...
2
votes
2answers
1k views

opengl texture lod bias adjusting via opengl function call?

how is it possible to change the lod bias via an opengl function call? i dont like the default settings, changes the miplevels too early and makes the nearby ground look ugly. i couldnt find any ...
2
votes
2answers
2k views

iPhone camera images as OpenGL ES textures

Is it possible to use an image captured with the iPhone's camera as a texture that is then manipulated in OpenGL ES (flag wave effect, etc.)? The main problem being the size of the iPhone screen ...
1
vote
1answer
54 views

Create contour plot in opengl using grid data and a 1D texture map

I have a set of X,Y,Z values on a regular spaced grid from which I need to create a color-filled contour plot using C++. I've been googling on this for days and the consensus appears to be that this ...
1
vote
1answer
83 views

XNA texture coordinates on merged textures

I got a problem with texture coordinates. First I would like to describe what I want to do then I will ask the question. I want to have a mesh that has more textures using only one big texture. The ...
1
vote
2answers
53 views

Mapping a texture to a mayavi mesh

I'm using mayavi in python to visualize some data. I have a surface in 3D space and I want to map an image to it. I have looked at mayavi documentation and all I could find was this, which really ...
1
vote
1answer
138 views

OpenGL ES 1.1 on Android: Q texture coordinate not having any effect

I'm developing an OpenGL ES 1.1 app for Android (with the OpenGL calls being made from C code called via NDK). My problem is that I'm trying to use the Q texture coordinate as well as the usual (S, ...
1
vote
1answer
72 views

Render face of cube map to a quad

I have a cube map texture in OpenGL, and I'd like to render one face of the cube to a single quad. What texture coordinates should I use? To be concrete, what coordinates should I pick to render the ...
1
vote
1answer
58 views

OpenGL texture mapping disables shading

My current openGL application is just a sphere and a floor, with lighting and shading working properly. After adding a 2d texture to the floor via the redbook tutorial: ...
1
vote
1answer
64 views

GL_TEXTURE_2D_ARRAY in OpenGL ES/WebGL?

I have an application in mind that would greatly benefit from the use of array textures. However, I have not been able to determine whether array textures are available in the current WebGL ...
1
vote
1answer
188 views

How to draw a textured torus in OpenGL without using GLUT?

I need to render a torus in OpenGL, without using GLUT. I'm using C# and Tao Framework bindings. I have the following code, which I got from here. private void DrawTorus() { int numc = 100, ...
1
vote
1answer
288 views

GLSL passing texture coordinates from vertex shader

What I'm trying to accomplish: Drawing the depth map of my scene on top of my scene (so that objects closer are darker, and further away are lighter) Problem: I don't seem to understand how to pass ...
1
vote
0answers
32 views

What is the smoothest parameters for texturing with multi-sampling mode?

what is the smoothest parameters for texturing with multi-sampling mode. I mean to say I am using GL_LINEAR, GL_CLAMP, and GL_MODULATE. What should I choose here to get smoothest texture. ...
1
vote
1answer
118 views

Imitate Polygon Stipple with OpenGL ES on iOS

I want to fill a concave polygon with a simple repeating pattern. I can already draw the polygon properly, unfortunately I am having problems with filling it. In OpenGL I could do this easily with ...
1
vote
1answer
100 views

How to implement world-coordinate-aligned repeated texture mapping in OpenGL?

When you create a brush in a 3D map editor such as Valve's Hammer Editor, textures of the object are by default repeated and aligned to the world coordinates. How can i implement this functionality ...

1 2 3 4