For questions related to textures in computer graphics.

learn more… | top users | synonyms

2
votes
1answer
72 views

is there any option to select texture filtering for Xna

image : http://www.whitedesing.com/images/Why.png guys im using a software called "Xna 4.0" i draw a sprite on photoshop and original resolution is 1897 x 2664 300dpi.. im using a command for ...
0
votes
1answer
93 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 ...
0
votes
1answer
47 views

GL11 Texture rendering wrong

I'm trying to render an image on a basic quad, I took a look at the Space Invaders Example Game for the code, and implemented that code into mine. The image gets renderer on screen, with the right ...
0
votes
0answers
29 views

Does the size of a texture image impact the performance of texture fetching?

Using OpenGL ES 2.0, does the size of the texture impact how long it takes to fetch from a texture? I would think that it should be almost constant time to fetch a color.
0
votes
1answer
75 views

Svg doesn't work as background

I made a translucent svg. It was a 50% opacity round metal texture. When I put it above any other color it makes it look like real metal. It was made using Illustrator and had 2 of its effects: ...
0
votes
1answer
49 views

Android blank textures (lazy loading textures)

I have a GLSurfaceView where I render my scene. My scene display correctly except for some textures where I have white squares instead of the real texture. I use 2 types of texture : Some textures ...
0
votes
1answer
45 views

glDrawArrays distorts output to CCRenderTexture

If CCRenderTexture is not full window size, glDrawArrays output is smaller and at a strange angle. In my test code, the diagonal line should run from corner to corner at a 45 degree angle. How can I ...
1
vote
1answer
97 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 ...
1
vote
1answer
693 views

Loading a PNG as a Texture at Runtime in Unity3d

I'm using a series of PNGs as sprites to create animations on a plane for an augmented reality application in Unity. The PNGs are loaded as textures and the textures are applied to a plane to create ...
0
votes
1answer
127 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 ...
0
votes
1answer
53 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); ...
-1
votes
1answer
120 views

Import svg files with gradients and textures

I am using the library raphael-svg-import-classic. Anyone know how do I import svg files with gradients and textures? I use the same code that I used at my company, (the same, I think so , now I can ...
1
vote
1answer
124 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
150 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 ...
0
votes
0answers
28 views

Image formats with transparency that can be loaded

I'm paying around with loading textures and tiles in C++ and mapping them accordingly. I have functions that load .raw images, .tga images and .png images so far. I want to be able to load a square ...
0
votes
1answer
69 views

How to Apply a Texture to an Orthographic Plane Using DirectX11 Shaders

I'm currently trying to apply a texture image to an orthographic plane so that it can be used as a kind of 'U.I. decoration'. The plane is made up of two tri's in a ...
1
vote
2answers
43 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?
0
votes
2answers
162 views

Java 3d & Texture mappig

I am trying to load a 3D scene into java3D . I've tried to load my scene created in Cinema 4D in multiple formats (Obj, wrl, 3ds, x3d) but thus far I haven't been able to transport my textures with ...
0
votes
1answer
34 views

Placing an image on a window while controlling its size - directX, c++

All code is pseudo I have an image sized 1024 x 768. It is a jpg I have a window sized 1024 x 768. I create a sprite, get a texture for it, then draw it to the screen. for example: ...
0
votes
1answer
29 views

D3DXCreateTextureFromFile just returns a pointer rather than any decent message for me?

The following code for C++ DirectX Visual Studio 2012: HRESULT result; sprite = NULL; result = D3DXCreateSprite( gfx.d3dDevice, &sprite ); assert( !FAILED( result ) ); ...
1
vote
0answers
63 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 ...
0
votes
0answers
62 views

LWJGL Transparent Textures issue

So I'm working on a project for conenct4 and I ran into issues with texturing. The dividers on the inside of the board are invisilbe when viewed from the front faces, but not when viewed from the top, ...
1
vote
1answer
146 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
265 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
54 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 ...
3
votes
3answers
1k views

Slow glTexSubImage2D performance on Nexus 10/Android 4.2.2 (Samsung Exynos 5 w/ Mali-T604)

I have an Android app that decodes video into yuv420p format then renders video frames using OpenGLES. I use glTexSubImage2D() to upload y/u/v buffer to GPU then do a YUV2RGB conversion using shader. ...
1
vote
1answer
128 views

Update textures in X3DOM model dynamically

I am developing a Web 3D app and I produced some code in Javascript that implements the following tag to an external .html file with the model in it, within an iframe. In the <appearance> ...
0
votes
0answers
128 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 ...
2
votes
0answers
110 views

impossible to draw a different texture on my cubes on XNA

I'm having some problem to draw textures with class "DrawUserIndexPrimitive" on Xna. I can draw my cubes / models without problem. But I want to draw different textures on my cubes. I loop on each ...
1
vote
1answer
105 views

glDeleteBuffers crashes during destructor call

Hi I am using VBO to load image texture and then draw it in C++. VBO id generate and bind and draw occurs here void ViewManager::render(){ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); ...
0
votes
1answer
128 views

LWJGL Texture a cube

I'm currently rendering a cube with VBOs, and with color. I want to drop some texture on them, and I don't have any idea about it. Still learning OGL, but how can I render the cube with texture on ...
0
votes
2answers
264 views

TexturePacking with Libgdx -

My program packs a series of images and outputs them into an aste.png, and an aste.atlas. My code for packing is as follows: public void pack(){ System.out.println("Packing should not be ...
1
vote
0answers
181 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 ...
0
votes
1answer
212 views

Three.js CanvasRenderer textures broken in safari

I have a Three.js based sample I'm working on as a basis for a bigger project. To super simplify I have a plane with a texture which orbits a center point. It is actually attached to the center point ...
0
votes
1answer
74 views

ThreeJS texture issue

I have a problem with my Three.js 3D application - at least according to some people I know. My application rests at [http://176.9.149.205/planungstool/]. Some people who supposedly have the most ...
0
votes
0answers
39 views

modifier that creates linear texture wrapping? multiple 3d models

So I have two 3d models with different geometry so when the textures are applied they wrap differently, leaving the textures looking funny and uneven. I was wondering if there was a modifier that ...
0
votes
0answers
138 views

texImage2d with canvas

I read that it's possible to pass an HTMLCanvasElement as parameter of texImage2d: void texImage2D(GLenum target, GLint level, GLenum internalformat, GLenum format, GLenum type, HTMLCanvasElement ...
2
votes
2answers
190 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
2answers
164 views

AndEngine Texture very strange

Does anyone know why this is happening? Code to load image: gameOverAtlas = new BuildableBitmapTextureAtlas( activity.getTextureManager(), 1024, 1024, ...
1
vote
0answers
58 views

Unable to load texture on md2 model

I'm trying to use Rajawali framework to load a texture on md2 model. But I just can't get it done. It doesn't show any error but only some warnings. I'm not really sure whether it's my code issue or ...
0
votes
1answer
110 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
134 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
179 views

OpenGL texture ID generated more than once

I have texture loading routine in C that calls Java part of my game to do the job. It can load .png as well as .jpg files and create textures from them. It returns back to C the generated textureID ...
2
votes
1answer
84 views

Using C++ AMP with Direct2D

Is it possible to use a texture generated by C++ AMP as a screen buffer? I would like to generate an image with my C++ AMP code (already done) and use this image to fill the entire screen of Windows ...
-1
votes
1answer
108 views

SketchUp FBX cube model textures not correctly exporting [closed]

When exporting a .fbx model from SketchUp, only the buttom, the front and the left textures are exported. Is there a way to fix this?
1
vote
0answers
298 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 ...
2
votes
1answer
61 views

generate new patterns

I have a big texture image and I am using Efros and Freeman method (image quilting: http://www.cs.sunysb.edu/~vordonezroma/texturesynth.pdf) to generate new texture. But, my problems is somehow ...
0
votes
1answer
438 views

libgdx texture filters and mipmap

When I try to use mipmap filtering in LibGDX, none of the images appear. I'm new to LibGDX, and I have a simple 2d scene with three rotating, scaled circles. In order to anti-alias them, I wanted ...
0
votes
1answer
36 views

Using non-variable in file path

I want to make the file path changeable by the user. But as far as I can tell it has to be static in order to do so. Here is what I got. private String texturePath; more code... public String ...
1
vote
3answers
151 views

Creating texture from getImageData (Javascript)

It is possibile to create a texture (to use on a element in a canvas) from the getImageData array of another canvas (in the same html page)? maybe without three.js? Thanks a lot, Jennifer

1 2 3 4 5 28