Tagged Questions
0
votes
1answer
13 views
position opengl camera over a specific texel
I'm trying to pan over a specific part of a texture (applied to a Quad defined by 2D-Vertices). I'm using the fixed rendering pipeline.
The start, and end positions are given as pixel-positions in ...
1
vote
0answers
46 views
Opengl is rendering the color of first pixel
I am trying to port my game engine from win/linux to mac os x and all works fine except for the textures. I use SOIL to load the textures and GLSL shaders to render and all it's done in C++.
I ...
1
vote
1answer
16 views
Luminance values clipped to [0, 1] during texture transfer?
I am uploading a host-side texture to OpenGL using something like:
GLfloat * values = new [nRows * nCols];
// initialize values
for (int i = 0; i < nRows * nCols; ++i)
{
values[i] = (i % 201 ...
0
votes
0answers
28 views
Texture not showing up with SOIL and OpenGL 3.2
I am using SOIL to load textures, and trying to "display" them on a triangle using OpenGL 3.2. I am having a problem, though: nothing is showing up.
This is my code:
#include <iostream>
...
1
vote
4answers
68 views
GLSL, combining 2D and 3D textures
I am trying to blend a 3D texture with a 2D one to make a terrain. The 3D texture has moss, sand, snow and the like, interpolated to enhance the illusion of heights. The 2D texture currently only has ...
0
votes
2answers
53 views
Sphere texture mapping (opengl and c++)
I am trying to add a texture to a sphere, it works, but I keep getting an error. Below is a picture of what I get,
I don't know what this GL error: Invalid operation error is referring to. I think ...
0
votes
1answer
29 views
display a text using a SDL_Surface converted in a texture
As said, I'm trying to display a text using a SDL_Surface converted in a texture here's my code :
if (SDL_Init(SDL_INIT_VIDEO) == 0) {
//Create a surface
switch (method) {
case 2: // ...
0
votes
2answers
47 views
OpenGL - Texture mapping in vertex or fragment shader?
Is there texture of an object/triangles mapped in the fragment shader or the vertex shader?
Whether if it is on the vertex or fragment shader, if you are programming shaders it's something that you ...
0
votes
3answers
105 views
2D texture or cube mapping
I am trying to create a planet(OpenGL and C++), but I don't know how to wrap a picture around the sphere I have created.
I am able to create a solid sphere and I can also draw the grid (Latitude and ...
0
votes
1answer
42 views
SDL OpenGL Texture display issue
I'm following this tutorial in order to *Load an OpenGL Texture from an SDL_Surface*, I've copy/paste code and adapted it but it only display wrong old part of the buffer which is a little bit ...
0
votes
1answer
57 views
Drawing a texture to a framebuffer distorts the texture
I'm using the LWJGL OpenGL bindings for java and I want to draw textures to a framebuffer so I can render textures that are always used together at the same time.
I followed the tutorial on the LWJGL ...
1
vote
1answer
39 views
Using Two Textures: Output Window Doesn't Retain On Screen
This code initially uses one texture. I duplicated some functions to use two textures. There doesn't seem to be any errors but when I run I only see the black command window for a bit then it closes. ...
0
votes
1answer
77 views
Best way of using textures/sprites in OpenGL (including PBO)
I have a little game in C# which uses mainly fixed sprites (bitmaps loaded from disk) and some videos.
Now our current approach is
Loading:
texture.ID = GL.GenTexture();
...
0
votes
0answers
47 views
making lighting inside a cube and reflecting the texture
i'm trying to make the light shine inside my cube and reflect the image on the bottom of my cube,i have been trying to make this work but it seems i keep failing what exactly am i supposed to do,may ...
0
votes
2answers
44 views
OpenGL Terrain Texture3D Map
In OpenGL I am trying to map a terrain with 8 512x512 images using texture3D to get blended texture change.
But OpenGL forces me to allocate 512x512x512 array instead of 512x512x8
What can be solution
...
-3
votes
0answers
22 views
Adding a picture to a sphere in pyopengl - texture mapping [closed]
Can anyone help me to add a map picture on to the sphere???? ( Program using pyopengl)
The code I have only contain a sphere. Now i want is to make that sphere looks like a globe.
I tried texture ...
0
votes
1answer
36 views
LWJGL - White border on my 3D quads when they are like 10f away from camera pos
I get weird white borders on my 3D quads when they are a little ways away from the camera position and when they are close the borders disappear...
0
votes
2answers
47 views
covering each side of a cube with different images- OpenGL
I have this cube and I want to cover each side of it with a different image in which a letter appears.
My problem is that cube is covered by the same image, as you can see in following image.
but ...
0
votes
1answer
32 views
OpenGL SOIL painting the entire screen with the texture colour
I'm trying to load a PNG texture in OpenGL using the SOIL libray, and show the texture in GL QUAD, but when I call the function, the image is loaded correctly, but change the color of entire screen!
...
3
votes
1answer
66 views
GLSL: Removal of dead code causes visual errors
I've been having a lot of strange problem's while trying to write a raytracer in an opengl shader. I try to determine if the source of the error is myself, and often this is the case, but I've come to ...
0
votes
1answer
102 views
Where exactly do I add my BMP files in my OpenGL C++ project? Using Xcode for the Mac
I have my code working perfectly on Visual Studio C++ with OpenGL. The code is able to call the images folder. And when I run the program the images show up on my application.
Now I am trying to run ...
0
votes
3answers
53 views
Texture coordinates on different size of rectangles
I mapped texture coordinates like:
static float texCoord[] = {
0, 1,
1, 1,
1, 0,
0, 0
};
And by drawing it:
void Rectangle::Draw()
{
const float vertices[] = {
x, y,
x + width, y,
x, y ...
0
votes
1answer
52 views
OpenGL texture not showing up (with cocoa)
It's a very strange problem. I create a texture using the method copied from apple's sample. It's works fine in apple's sample, but not in mine project. The texture is not shows up, only the color ...
1
vote
1answer
67 views
incomplete attachment using GL_TEXTURE_2D_ARRAY with depth component
I'm trying to use opengl texture arrays for storing a lot of shadow maps.
Unfortunately, I always get an "incomplete attachment" error on checking the framebuffer.
I tried to set up my texture array ...
1
vote
0answers
136 views
Edge detection shader using a color picking texture (OpenGL)
I'm writing a small 3D application where I want to highlight selected objects with colored edges. I render the normal scene into two color attachments using a FBO. The first one contains only the ...
0
votes
1answer
48 views
0
votes
0answers
24 views
working or adding texture to the walls of a cube
I have been working on making a cube and I have some balls inside it though I am having problems on how I can put or add texture to my code. I am trying to learn but it seems whatever material I'm ...
5
votes
1answer
67 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];
...
1
vote
2answers
49 views
switching between textures loaded with SOIL
I'm attempting to load two textures and then switch between the two in my display function. I am using the SOIL library to load the textures as such:
tex_2 = SOIL_load_OGL_texture
(
...
1
vote
1answer
44 views
OpenGL texture tilted
When I load a texture in OpenGL and this has one (GL_ALPHA) or three components per pixel (GL_RGB), the texture appears tilted. What makes this happen?
As additional detail, the relation width/height ...
0
votes
2answers
38 views
OpenGL texture lookup error
I get an error while executing the following fragment shader:
#version 430 core
in vec4 pos; // <-- input (x,y,z) position normalized to [0, 1]
in vec4 screenPos; // <-- input ...
-1
votes
1answer
38 views
glucylinder doesn't work if I use texture for a background
I have a scene with lots of lines, triangles and quads, and some cylinders (glucylinder). Everything works perfectly.
I've created a texture for a background (a picture). So I can draw lines, ...
1
vote
1answer
126 views
bizarre GLSL texture coordinates
I've been trying to do simple texture mapping with SOIL, and I've been having bizarre outputs..
The output ONLY displays when a PNG texture is loaded. (SOIL_load_OGL_texture)
Other textures appear as ...
0
votes
0answers
106 views
GLSL textureCube fails
I have a fairly simple fragmentshader that does not work. It appears to have something to do with the textureCube method.
This is the fragment shader:
in vec3 ReflectDir;
in vec3 RefractDir;
...
0
votes
1answer
84 views
Seamlessly texture a cylinder with OpenGL and LWJGL
I am working on creating a procedural city, complete with randomly generated buildings and textures. I am generating cylinder-ish buildings correctly, and generating a procedural texture pattern for ...
1
vote
1answer
78 views
Why is my texture streching even on using GL_REPEAT?
This is my output :![enter image description here][2]
The image is stretched when my walls are long and squeezed when they are small.
My code for loading texture, loadTGATexture method is from the ...
0
votes
1answer
105 views
how to bind a OpenGL framebuffer object to a Cg texture?
I ran into problems trying to do a simple post-processing with OpenGL and Cg; the problem, it seems, is in connecting the OpenGL Framebuffer object to Cg texture parameter.
I'm creating a FBO like ...
1
vote
1answer
104 views
Textured Sphere in LWJGL
I want to draw a GLU Sphere,which works, but now I dont know how I can texture it.
There is no point where a glTexCoord2f could go.
1
vote
1answer
114 views
Textures not displaying correctly C++ opengl SOIL
Here is my problem;
Image a box, or a cube, all sides right.
If we were to put the box on a flat surface, the face touching the bottom, would be the floor or base. if the base had an inside, which ...
1
vote
2answers
37 views
Difference between glTexImage1D and glTexImage2D
What is the difference between glTexImage2D() and glTexImage1D()? Actually, I can't imagine 1D texturing. How can something have a 1D texture?
1
vote
0answers
55 views
Using large 3D textures in pyglet
I'm trying to do some GLSL particle stuff with precomputed velocity vector fields. These vector fields are stored as ~13 1024x170 float textures, each corresponding to a different "slice" in the ...
1
vote
1answer
134 views
CubeMap in OpenGL doesn't show at all
I'm trying to simply load 6 pictures as texture of cube in OpenGL. Blow is the loading code:
glTexParameteri(GL_TEXTURE_CUBE_MAP_ARB, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
...
3
votes
1answer
193 views
GL_ALPHA, GL_LUMINANCE
I'm trying to bind a texture that I want to interpret as either Alpha, Luminance or Intensity. I'm using OpenGL 4.0. I can bind them as GL_RED OK with no problems, i.e. :
glTexImage2D( ...
0
votes
1answer
45 views
OpenGL 8 bit alpha texture format
I have a greyscale 8-bit bitmap which I am going to use as a mask for font glyph rendering. The bitmap pixels are just an alpha value. I'm wondering whether it's better to convert this to RGBA, or ...
0
votes
0answers
113 views
LWJGL Texture blending not working
I'm trying to draw a gradient and then draw a transparent texture ontop of it.
This is the code I'm using right now:
GL11.glClearColor(0.0F, 0.0F, 0.0F, 0.0F);
// Draw the gradient
...
1
vote
0answers
149 views
GLSL 330: down sample texture
I want to down sample an input texture from 800x600 to one quarter itself (200x150 pixel). But if I do that I can see only a little bit of the image. It seems that the frament shader doesn't down ...
2
votes
2answers
176 views
Strategies for packing data into OpenGL 3D array
I am implementing a voxel raycaster in OpenGL 4.3.0. I have got a basic version going where I store a 256x256x256 voxel data set of float values in a 3D texture of the same dimensions.
However, I ...
0
votes
1answer
93 views
How can I create a 3d texture with negative values and read it from a shader
I have written a volume rendering program that turns some 2d images into a 3d volume that can be rotated around by a user. I need to calculate a normal for each point in the 3d texture (for lighting) ...
0
votes
2answers
132 views
How to render grayscale texture without using fragment shaders? (OpenGL)
Is it possible to draw a RGB texture as grayscale without using fragment shaders, using only fixed pipeline openGL?
Otherwise I'd have to create two versions of texture, one in color and one in black ...
1
vote
0answers
241 views
Can't render texture from off-screen frame buffer object into quad correctly
I'm working on a project in wich I need to get the surface from a SPH particle simulating water in order to render it on a cartoon style. In order to do this I'm following a method in wich the first ...





