For questions related to textures in computer graphics.
0
votes
0answers
11 views
adding texture to VBO with png texmap in LWJGL not working well
I was doing a VBO and able to load all the data of OBJ file but now I have problem adding texture to it. what i did is that I use the slick library to get the texture file and bind it to the VBO ...
1
vote
0answers
27 views
OpenGL conformal texture mapping
I'm a 3D programmer with background in physics, interested to better know how texture mapping can be made using conformal maps for simple surfaces.
I want to texture map a paraboloid:
...
0
votes
0answers
5 views
seamlessly tilable texture in UIKit
I have a seamlessly tilable texture patch (128x128).
Using UIKit, how can I display this texture on a larger area without requiring to duplicate the data in memory? (so that only the data of one ...
0
votes
0answers
19 views
How to convert I420 to BGRA in iOS?
I'm trying to read ffmpeg h263 frame, then display it using OpenGLES Texture. AFAIK, h263 works with I420, and OpenGLES Texture only accepts BGRA frame.
So I need to find a way to convert I420 to ...
0
votes
1answer
16 views
How do you use a texture after releasing it?
This may sound like an odd question, but I can't figure out textures in this situation. I am making a game for class where you get a mouse through the maze and lose if you touch a wall.
After the ...
0
votes
1answer
24 views
How do I load textures to OpenGL using FreeImage library?
I'm learning OpenGL in C++ using NeHe tutorials, but I'm trying to do them with FreeImage library, instead of Glaux or SOIL. The good point I see in using FreeImage is thar it's last update was in ...
0
votes
1answer
24 views
Texture from hard disk not loading in three.js - showing black
I encountered problem on trying to load images from the local machine.
If I give a link in internet to a jpeg file it works okay, but if I replace with path from my local machine - the texture is ...
0
votes
0answers
14 views
Trouble Texturing a Rectangle Entity
While learning how to use lwjgl, I followed a tutorial where we textured quadrilaterals using code like this:
lBegin(GL_QUADS);
glTexCoord2f(0, 0);
glVertex2i(0, 0); //top ...
-1
votes
1answer
23 views
Texture not displaying, mesh showing up black
It seems every time I try to get texturing working in my OpenGL apps I miss something obvious, and I end up spending many hours debugging. Well it happened again and even though I've been trying to ...
0
votes
0answers
18 views
Error in Pixel-Pixel-Collision
I have got this pixel-pixel-collision code, but it gives me an error Index outside range of the array on if (((t1[i] & 0xff000000) > 0) && (t2[i] == 0xffC3C3C3))
Variables:
int bHit;
...
0
votes
1answer
19 views
Texturing in Three.js
I using three.js r57 version. I apply the texture image to a geometry. It apply but not properly. The same texture image applied to same geometry in Three.js r49 that applies correctly. I also tried ...
1
vote
3answers
25 views
GLSL Reading From Sampler3d texture
I have 3D volume texture which I initialize it with below line :
glTexImage3D(GL_TEXTURE_3D, 0, GL_RED, numX, numY, numZ, 0, GL_RED, GL_UNSIGNED_BYTE, voldata);
In fragment shader, I want to read ...
1
vote
1answer
44 views
setting up a CUDA 2D “unsigned char” texture for linear interpolation
I have a linear array of unsigned chars representing a 2D array. I would like to place it into a CUDA 2D texture and perform (floating point) linear interpolation on it, i.e., have the texture call ...
0
votes
0answers
28 views
Unable to bind 2D texture in within function, CUDA
I'm having a problem with a simple texture binding. This code works fine:
texture<float, 2> textureD;
__global__ void kernel(float *output, int width, int height) {
int row = blockIdx.y * ...
1
vote
2answers
48 views
Get original texture color in a Fragment Shader in OpenGL
So, I need to make a shader to replace the gray colors in the texture with a given color. The fragment shader works properly if I set the color to a given specific one, like
gl_FragColor = vec4(1, 1, ...
-1
votes
1answer
29 views
ffmpeg to opengl texture with glTexImage2D
I'm trying to make a player in OpenGL. I use ffmpeg to decode the video.
I searched several tutorial (StackOverflow, ....) how to convert my pFrameRGB-> data [0] texture in OpenGL, but it still shows ...
0
votes
0answers
43 views
Multiple textures on one polygon OpenGL
So I have no idea how I should be doing what I want do so I'll explain as best as I can.
http://i.stack.imgur.com/j65H8.jpg
So imagine that entire image is a 2d square 128x128 and each color I want ...
0
votes
0answers
15 views
Try to change a texture of an object under the mouse with mouseclick [Three.js]
actual i work on a system to change the texture of an object with a mouseclick.
My objects are build with this:
var cubeGeometry = new THREE.CubeGeometry( 25, 200, 50 );
wall = new THREE.Mesh( ...
-3
votes
1answer
36 views
Unable to load most image formats as textures in OpenGL
I'm attempting to load a variety of image formats to display with alpha blending in OpenGL for our company's software, but I seem to have no luck on this. I'm trying to load Bitmaps like this:
...
0
votes
1answer
63 views
LibGDX - Comparing Sprites in the Fragment Shader
I am working on a LibGDX project, and I would like to be able to modify things like the color and alpha of a sprite, specifically on any part that overlaps the previously placed one. From what I can ...
0
votes
0answers
9 views
Get textures from Blob in JSONLoader
I want to utilize or somehow extend JSONLoader to allow using texture image Blobs from HTML5 FileSystem API instead of just URLs.
Currently there is function call chain in JSONLoader like parse -> ...
0
votes
1answer
41 views
Switching from render buffer to depth texture
Here is my code for creating a new FBO. Right now, I am using a render buffer.
/**
* Creates a new FBO.
* @param width The width of the FBO to create.
* @param height The height of the FBO to ...
1
vote
0answers
19 views
Best way to provide skin options in my application?
I want to provide the user of my application an option to choose a skin from a number of skins in application where basically I need to assign a different set of textures to objects such as TextViews, ...
0
votes
0answers
18 views
Unexpected alpha values in DXT5 decompression
I am decompressing an image compressed with DXT5. According to the description each block of 16 bytes starts with 2 bytes alpha data. If i have a look at my file in a hex editor i find that 90% of the ...
0
votes
0answers
20 views
How to multisample FBOS
Notice: I am using LWJGL.
Here is my code for creating a new FBO:
/**
* Creates a new FBO.
* @param width The width of the FBO to create.
* @param height The height of the FBO to create.
* ...
1
vote
1answer
29 views
GLUT - what is imageloader.h and how can I get the correct one?
I'm currently learning the basic of how to map a texture in GLUT from this source:
http://www.dreamincode.net/forums/topic/253361-texture-mapping-and-glutsolidsphere/
and I wonder what is that ...
1
vote
1answer
37 views
XNA 2D Tile Based Texture Size
I am using XNA game studio to make a 2D Sandbox RPG similar to Terraria & Starbound.
I have a great tile system but it still takes over 12-13 ms to draw a whole scene at 1920 x 1200 when the ...
0
votes
1answer
34 views
My fragment shader in WebGL program is setting all the colors from my texture to black
I have a simple game that uses three textures with transparent parts. I can see the silhouettes of my textures, but anywhere that doesn't alpha set to zero returns black (0, 0, 0, 1).
Here's my ...
0
votes
1answer
25 views
Using different texture types in same texture unit at the same time in shader
I came across a nasty problem in my program when i tried to use the same texture unit (number 0) for different texture types (i.e. a normal 2D texture and a cube map) in my shader. It appeared so that ...
0
votes
1answer
27 views
OpenGL - Is it possible to use texture buffers with interleaved VBOs?
Is there a method for binding only a single attribute of a VBO to a texture buffer object?
Problem is, I use an interleaved VBO for drawing spheres with the attributes position, radius and another ...
0
votes
1answer
58 views
Is there a way to share a texture between two contexts / threads using OpenGL on Android?
I want to have two threads. One thread writes into a texture using an FBO and the other uses it to render to the screen.
This can be done on windows etc, but how do I do it on Android?
I am using GL ...
8
votes
1answer
128 views
OpenGL Textures form SDLSurface goes too dark
I've quite the same problem than this OpenGl goes too dark but the answer doesn't work for me. I'm trying to display a image thanks to a surface converted to a texture and the result is too damn dark:
...
0
votes
1answer
30 views
Can you create an OpenGL texture array that has only one layer?
I am trying to clean up an OpenGL application. Currently, I want to store all my textures in a texture array.
According to cases, I might have to store only one texture.
In that case, can I create a ...
0
votes
1answer
33 views
OpenGL fail to load raw picture
I am trying to execute a code that uses a raw picture as a texture. The problem is the picture wont load. Where do I need to put the picture so the program can locate it? It is currently in the ...
-1
votes
0answers
58 views
Opengl texture wont show
So this is kind of weird. The texture on my quad only shows up if i take my object as a static in the same function as it is being used. If i declare the class as a non static or a pointer the texture ...
2
votes
1answer
60 views
LibGDX creating texture from base64 PNG ByteArrayInputStream
I just decided to make the change from Slick2D to LibGDX. However, for me to be able to port my game over to LibGDX I need help understanding how to create textures in LibGDX from my game data files.
...
0
votes
1answer
29 views
Xna transform a 2d texture like photoshop transforming tool
I want to create the same transforming effect on XNA 4 as Photoshop does:
Transform tool is used to scale, rotate, skew, and just distort the perspective of any graphic you’re working with in general
...
0
votes
0answers
26 views
(Java LibGDX) How do I resize my textures in LibGDX?
I have been fooling around with LibGDX for a while now, and wanted to easily port my programs to different systems. I have a background texture, which I want to scale to the currently used resolution. ...
1
vote
1answer
61 views
When Object is loaded into memory?
How can I check when this operation:
Page2 = Texture.fromBitmap(new Page2Class(), true, true, FactorScaler);
is complete (process finished, Page2 ready to use on stage) and I'm ready for loading ...
0
votes
1answer
32 views
Using Multiple Textures in OpenGL only One Displayed
I've modified my original code (previous post) to use two textures. Here they are:
#include <GL/glut.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include ...
0
votes
1answer
26 views
Does it possible to dynamically generate a texture in SketchUp Plugin?
I need to make a Google SketchUp plugin that has to generate textures from external data and add them on a object. I know that SketchUp can use external images as texures. But does it possible to ...
0
votes
1answer
42 views
openGL invert textures orientation during pixel-transfer?
as we all know, openGL uses a pixel-data orientation that has 0/0 at left/bottom, whereas the rest of the world (including virtually all image formats) uses left/top.
this has been a source of endless ...
0
votes
2answers
47 views
ACCESS_VIOLATION exception (0xC0000005) when using IDirect3DTexture9::LockRect
Using DirectX 9, I am trying to create and then fill in an LPDIRECT3DTEXTURE9 texture in the following way.
First, I create the texture with IDirect3DTexture9::CreateTexture:
LPDIRECT3DTEXTURE9 ...
1
vote
1answer
69 views
Displaying incorrect texture when handling multiple animated 2d sprites in webGL
I'm working on a fairly simple 2d sprite based game that uses webGL. Individual sprites can be translated, scaled, and rotated. I'm using sprite sheets as textures and then modifying texture ...
0
votes
0answers
57 views
OpenGL mesh class not working
I've been through a couple of solutions to allow abstract meshes, and I have decided on this:
A RenderObject instance contains a pointer to a mesh, to a shader, and to a texture. It also contains a ...
0
votes
1answer
30 views
Determining Texels in a Fragment
Consider the following quote from this OpenGL ES for iOS Book:
OpenGL ES supports several different sampling modes: Consider what happens when fewer fragments are produced for a triangle than the ...
-1
votes
0answers
66 views
IOS - GLKit and drawing text
My project is an IOS opengl 2.0 project using GLKit. I'd like draw texts using the tutorial below:
...
2
votes
2answers
70 views
OpenCV image loading for OpenGL Texture
I want to load an image (jpg and png) with OpenCV as OpenGL Texture.
Here is how I load the image to OpenGL:
glEnable(GL_TEXTURE_2D);
textureData = loadTextureData("textures/trashbin.png");
...
0
votes
1answer
15 views
Save Texture format in 655
Bonjour,
Simple, but not easy question -I think- for you, guys.
On the video game I'm making my first remake of, I've encountered textures of the format 16 bbp RGB655 ( no, NOT 565, 655! ). I ...
0
votes
2answers
264 views
Three.js multiple materials on object loaded via OBJMTLLoader
I have ".obj" and ".mtl" files of a model and I'm loading it via OBJMTLLoader. ".mtl" specifies texture to apply to a model, and three.js loads model and renders it with applied texture just fine.
...




