Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
3answers
213 views

labels in an opengl map application

Short Version How can I draw short text labels in an OpenGL mapping application without having to manually recompute coordinates as the user zooms in and out? Long Version I have an OpenGL-based ...
2
votes
1answer
187 views

How to texture a cylinder in XNA4 with multiple textures?

Basically, I'm trying to cover a slot machine reel (white cylinder model) with multiple evenly spaced textures around the exterior. The program will be Windows only and the textures will be ...
2
votes
1answer
195 views

OpenGL - Texture Atlas “smudging”

I am using a texture atlas which I have a made by stitching 2 identically sized images together side-by-side. When I modify the texture co-ordinates I do the following in this order: ...
2
votes
2answers
815 views

How do I apply a colour transformation matrix to a texture in OpenGL

Basically, I've got a colour matrix defined as such: struct ColourXForm { float4 mul; float4 add; float4 Transform(float4 colour) { return float4( colour.x * mul.x + ...
1
vote
1answer
36 views

OpenGL texturing issue

I have a an odd problem with some texturing in opengl: This scene is comprised of an open box composed of 4 textured quadrics (floor and 3 walls) and some crude mushrooms made from gluSpheres that ...
1
vote
1answer
52 views

I need OpenGL ES 1.1 to render objects with texturing and others with just vertex paints and colors simple

I'm running on XCode and using OpenGL ES 1.1 and I have two classes one that is textured and the other one is just triangles with color data and they render fine until I render my textured triangles ...
1
vote
2answers
157 views

Cocos2d Sprite Continuous

I am trying to create a background to flow with the game. However the image isn't Continuous. There is a space between each of the image loads. I want the image to continue to loop. Here is the ...
1
vote
1answer
162 views

opengl es texturing problem android

i want to stretch or tile an opengl object from some bitmap. i use image of a part of bitmap. but my ring and middle textured with a average color of image. if i change image color change, but picture ...
1
vote
3answers
167 views

OpenGL - Different textures on different surfaces of the same object

I'm trying to draw a car for a game I'm making using OpenGL. The car object is stored in an .obj file with an accompanying .mtl file. The car has 500+ vertices, 100+ faces and needs over 50 different ...
1
vote
1answer
148 views

Texture mapping problems with OpenGL

I'm having some problems mapping textures with OpenGL. Here's the link to the model which I'm currently trying load correctly with these textures. Now here's a link to a directory where all the ...
1
vote
3answers
138 views

OpenGL texturing

Sorry for the plea for help, but I am frustrated. I don't know why, but I've never seemed to be able to get texturing to work in OpenGL. I would really appreciate a minimal example, so long as it ...
1
vote
1answer
2k views

GLSL: enabling/disabling texturing + shaders

I'm looking for a way to access OpenGL states from a shader. The GLSL Quick Reference Guide, an awesome resource, couldn't really help me out on this one. In the example I'm working on I have the two ...
0
votes
2answers
63 views

OpenGL, Shader Model 3.3 Texturing: Black Textures?

I've been banging my head against this for hours now, I'm sure it's something simple, but I just can't get a result. I've had to edit this code down a bit because I've built a little library to ...
0
votes
1answer
192 views

OpenGL Texturing Garbage

I have a problem with texturing – it loads the image correctly, but renders garbage onto the geometry. The geometry itself draws fine (a simple triangle), but no matter which texture I load it just ...
0
votes
1answer
22 views

Transparent texture with OpenGL ES without using the alpha channel

Is it possible with OpenGL ES to texture a quad in such a way that all pixel (0,0,0) of the texture are not drawn while all the others are drawn? I have RGB888 images and the black color (0,0,0) is to ...
0
votes
1answer
61 views

OpenGL error 'invalid value' when calling glTexSubImage2D

I have a small application that I'm using for testing that is doing some post processing effects. My goal is to read the pixels using double PBO's and then render the pixels to a full screen texture ...
0
votes
0answers
56 views

Using GL ES 1.0, how do I combine vertex color and texture with modulate 2x?

I am trying to support OpenGL ES 1.0 in an existing engine and I need the vertex colour to scale the texture with modulate 2x. IE Vertex color 128,128,128 combined with texture of 216,216,216 would ...
0
votes
1answer
118 views

iOS OpenGL runtime texturing

Is it possible somehow to automatically continue the building of an existing mesh? How this can be done? Let's say an example. I have a cuboid and I would like to have a bigger cuboid in runtime. The ...
0
votes
1answer
83 views

OpenGL Texturing mesh FrontSide and BackSide

I doesn't have experience with OpenGL (and my question proof this) but I need a little snipplet to solve a problem. I have a mesh, a square and I need to apply 2 Texture: 1 FrontSide and 1 BackSide. ...
0
votes
1answer
239 views

Pass a Qt QImage to a glsl texture sampler

I am writing a rendering engine using Qt and am running into problems with texturing my models I have a very simple shader to test texturing: vertex shader: Attribute vec4 Vertex; Attribute vec2 ...
0
votes
1answer
52 views

OpenGL - Texturing, unwanted skewing and rotating

I'm trying to map several texture atlases onto various quads on a car object. I am coming across a problem where some textures are skewed and rotated rather than mapping directly onto a quad. The ...
0
votes
1answer
417 views

GLSL textureCube and texture2D in same shader

I can't seem to be able to have both texture2D() and textureCube() in one shader. When I do, nothing shows up and there is no error. I tried this both with my own shader loader and the Apple GLSL ...
0
votes
1answer
127 views

technique and speed expectations for opengl text labeling

I am using opengl (fixed-function pipeline) and I'm drawing potentially hundreds of thousands of points, and labeling each with a text label. This question is about whether I'm doing this in a ...
0
votes
1answer
707 views

texture a planet in blender 2.57

Can you tell me how to unwrap a sphere, so it will go as a ractangle, because when I unwrap a sphere projection, it goes to very wierd UV map. I have the textures, but I cant use them, because of the ...
0
votes
2answers
344 views

openGL fixed function pipeline - scale texture intensity beyond 1.0

is there a way other than multitexturing or multipass rendering to scale a texture's intensity above factor 1.0 using the fixed function pipeline? it can be achived with multipass rendering. for ...
0
votes
2answers
464 views

Texturing VBOs (Vertext Buffer Objects)

I'm currently working on a procedural planet generation tool that works by taking a cube, mapping it to a sphere and then applying a heightmap to each face to generate terrain. I'm using a VBO for ...
0
votes
2answers
145 views

Open GL ES Texture image quality

I have been having a bit of trouble with this issue with a while and have decided to ask for help! I have a textured 1024 x 1024 area in my iphone application. I am texturing it using an image that ...
0
votes
1answer
290 views

Texture size when using JOGL

In my next project, I'm trying to learn JOGL. The result should be a simple 2d animation. I've heard, that a texture must be 2^n*2^n in size. Can I still use images which don't have this size, or do ...
0
votes
7answers
2k views

OpenGL texture loading issue

This is a very vague problem, so please feel free to clarify anything about this project. I'm working on a very large application, and recently a very perplexing bug has cropped up regarding the ...
0
votes
1answer
822 views

Shadows via shadowmaps and other textures - how to combine? OpenGL

Good day. I draw a scene with shadows using shadow maps method (when we're rendering scene from light point of view to retrieve depth buffer, making shadow texture and projecting it on the scene, ...
0
votes
3answers
3k views

Paletted textures with 8-bit alpha channel in OpenGL ES

Can I get paletted textures with RGB palette and 8-bit alpha channel in OpenGL ES? (I am targetting the iPhone OpenGL ES implementation.) After peeking into the OpenGL documentation it seems to me ...