1
vote
4answers
61 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
1answer
32 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...
1
vote
0answers
129 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
24 views

How to mix textured and untextured polygons?

I'd like to apply textures to my polygons but only to some i.e. have to vertex formats one that is coord+color, and one that is coord+texcoord My understanding is that you can only have one vertex ...
0
votes
1answer
47 views

Truncated image when creating textures from png

I am trying to create a texture from a png using the following code: ... var texture = gl.createTexture(); var img = new Image(); img.onload = function () { gl.activeTexture(gl.GL_TEXTURE0); ...
0
votes
2answers
127 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 ...
0
votes
1answer
333 views

Three .js importing textures

I'm using three.js and have now a scene with a floor and a car as json loaded. Everything fine but the car is just black and not with the texture from blender. Is there any possibility to export it ...
4
votes
1answer
97 views

Use different texture for specific triangles in VBO

I have 9 quads made of triangles, like this: I'm using VBO to store data about them - their position and textures coordinates. My question is - is it possible to make the quad 5 to have a ...
0
votes
1answer
145 views

Regarding Multisampling of textures

i am rendering white cube with green background in non default FBO and attaching the created multisampled texture to this FBO. When i render a cube in default FBO using above texture, it gives ...
1
vote
1answer
107 views

What could cause textures to be black in the fragment shader?

I've been working a bit with WebGL but it seems I can't manage to display textures any more. The output of the fragment shader is always black (the silhouette is visible). I know this problem may ...
9
votes
1answer
187 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
3answers
227 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 ...
6
votes
1answer
228 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); ...
2
votes
0answers
171 views

creating several bitmaps and binding them to texture

i need to create a bitmap and to load it as a texture( create a bitmap in program, make some drawings and then bind it to texture) loading bitmap from file system is like this private int ...
2
votes
1answer
721 views

Binding an OpenGL Texture Sampler

I'm a tad confused about how to bind a texture to a slot in GLSL. Here are my shaders: #version 330 layout(location=0) in vec4 in_Position; layout(location=1) in vec4 texCoords; out vec4 ...
1
vote
0answers
48 views

Live Generate Skybox from Colours

I am writing a program at the moment that creates a 3D environment for a user to navigate. One of the features of it is to have a skybox that changes based on the current time and date. I have written ...
0
votes
0answers
33 views

Which is android's texture coordinate and how is the texture mapped?

I am confused when I do texture mapping. Which texture coordinate does android use and how is the texture mapped? Here are two definitions of texture coordinate I found. Which one is correct?
1
vote
1answer
111 views

Why does a texture used on opengl objects looks poor in quality and stretched?

Here is the reference of library I am using The texture when pasted over a opengl wall looks low in resolution and has poor quality, how can I improve it? code ground->m_texture = new ...
3
votes
1answer
997 views

When should I set GL_TEXTURE_MIN_FILTER and GL_TEXTURE_MAG_FILTER?

By definition the GL_TEXTURE_MIN_FILTER is used when the pixel being textured maps to an area that is larger than one texture element. Say I have a texture with 1024*768 resolution, and I want to ...
0
votes
2answers
188 views

Cannot read out Values from Texture Memory

Hi I'm writing a simple Program for practicing to work with texture memory. I Just want to write my data into Texture Memory and write it back into Global Memory. But i cannont read out the Values. ...
0
votes
1answer
125 views

Cuda Texture Memory does not inherit the right Values

I'm Trying to bin a 2D array to a texture and to do interpolation between the data. My Problem is. When I'm binding my Array to the texture the the Values i access are total nonsense. Even when I'm ...
0
votes
1answer
139 views

Saving Values after Calculating with Texture Memory

Hi I have a simple Calculation Using Texture Memory. But i am not able to save the right results. The result should be a interpolation. For example angle = 0.5 A[0] = 1, B[0] = 2, result[0] should be ...
3
votes
1answer
220 views

What are the risks of loading textures from images at runtime in XNA?

What is there to know about (apart from only being able to do that on PC) loading textures from images at runtime?
0
votes
2answers
280 views

When to use power of 2 textures in XNA?

I hear a lot that power of 2 textures are better for performance reasons, but I couldn't find enough solid information about if it's a problem when using XNA. Most of my textures have random ...
1
vote
2answers
354 views

Deleting textures in opengl

Do I have to delete all the textures I created (using glDeleteTextures) before the program exists, or does OpenGL delete the textures by himself?
0
votes
1answer
1k views

Basic Texture drawing with JOGL, using a Texture object

I'm trying to give the user of my application the ability to load an image of their choice to make the background. Loading the image via Java is no problem, but I can't get the image into a ...
3
votes
1answer
112 views

How is Apple's fabric texture generated?

Apple uses this texture in a lot of its products now: And here's a closer look: You can see that it's not just a bunch of lines: there's an element of randomness to it. Generally speaking, how ...
1
vote
1answer
597 views

How to translate OpenGL texture to CUDA texture?

Here I have a OpenGL texture: GLuint tex1; Now I want to use the tex1 as a searching table in CUDA, so maybe I should translate it to a CUDA texture. As we know, CUDA texture, as a type of ...
1
vote
2answers
143 views

Why can I not load a texture into my app?

I think texture mapping is a really easy task. Actually, I implemented it many times but failed in this time and don't know why? And I can guarantee that the route to load the texture is right. Any ...
2
votes
1answer
110 views

My original Java Font Program - Skewed when using different letters?

The output of my font program is skewed. I'm pretty sure that the problem has to do with x and y, and how printLetter() uses them. It's possibly getting confused with multiple numbers for x and y? ...
1
vote
1answer
273 views

undefined reference to glCompressedTexImage2D

I am trying to load some .dds textures for my game. My IDE is Dev-C++ with GLUT 7.6 installed. When I use OpenGL functions like glTexImage2D() or glVertex2f() my programs compile normally but when I ...
0
votes
1answer
571 views

OpenGL resizing a Texture/Quad

I'm implementing a pan/zoom viewer for jpegs. I show one image at a time mapped to a texture, then on a key press, swap between images. My problem is that although the image does change, the size of ...
0
votes
1answer
729 views

How to texture map a JPG image referenced in an MTL file of an object using OpenGL?

How do I do that? I'm currently using Nate Robin's GLM but I don't think it supports this kind fo texturing? Any help would be much appreciated.
2
votes
1answer
3k views

Loading Textures fast into OpenGL 2.0

I am building a simple live wallpaper for Android. I am uploading the required texture into OpenGL ES 2.0 using the below code. I have loaded all my images into a single file of size 2048x2048. This ...
2
votes
3answers
247 views

How to make texture move

I have problem. I have tryed how to make my texture move, but my solution is slow and it is not working. Does anybody know how to make texture2D move using C# XNAGamestudio. ANybody please help me! ...
1
vote
1answer
654 views

Create directx9 texture using a portion(s) of an image

i have an image(208x8) and i would like to copy 8x8 squares from it at different areas then join all the squares to create one IDirect3DTexture9*
1
vote
1answer
874 views

In Android OpenGL ES 1.1, how to draw texture to both side of triangle?

I am trying to draw a texture to both sides of a triangle in Android. I have the below code float textureCoordinates[] = { 0.0f, 0.0f, // 0.0f, 1.0f, // 1.0f, 0.0f }; ...
0
votes
1answer
554 views

OpenGL texture color issue

I'm loading raw texture (with alpha channel) and displaying it in openGL everything is fine and texture displayed, but color is little bit darker than original. I already tried to turn of lighting, ...
1
vote
1answer
335 views

will Texture declaration in method scope cause memory leak?

I wonder if this piece of code will cause memory leakage? because I still don't know when is a texture should be disposed. should the texture disposed in the end of method? or dispose it separately ...
6
votes
1answer
3k 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
575 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 ...
0
votes
1answer
574 views

Having trouble loading in multiple .bmp files for textures OpenGL C++

Having some trouble trying to get to .bmp files into an array so I can use them for textures. EDIT Display.h #pragma once #include "Ball.h" #include "Bitmap.h" class Display { private : ...
3
votes
3answers
4k 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 ...
1
vote
1answer
417 views

Has anyone used a texture atlas with WebGL in Chrome?

I created a texture atlas and in Chrome there is some white on the edges of the cubes. However in Firefox it displays just fine. When I use colors there are not white edges either in Chrome or Firefox ...
3
votes
1answer
244 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 { ...
0
votes
1answer
495 views

How can I parse through a texutre in DirectX? (IDirect3DTexture9*)

I've been trying to figure out how to parse textures in directx for two reasons: to write my own texture format and to manipulate data in existing IDirect3DTexture9 type textures. I've been looking ...
2
votes
1answer
1k 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 ...
5
votes
3answers
20k 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 ...