For questions related to textures in computer graphics.

learn more… | top users | synonyms

3
votes
2answers
284 views

How to generate texture mapping images?

I want to put/wrap images to 3D objects. To keep things simple and fast, instead of using(and learning) a 3D library I want to use mapping images. Mapping images are used in such a way: So you ...
0
votes
1answer
67 views

How to add a texture to dynamically generated terrain vertices in xna

I'm trying to add texture coordinates to each of the vertices so that a grass texture is added to each triangle. The code I have stretches the texture across the entire area which works but doesn't ...
2
votes
1answer
150 views

xna texture coordinates

I've been trying to combine a couple of riemers tutorials to make a terrain that is textured and lit. I'm almost there but I can't get the application of the texture right. I believe the problem is in ...
0
votes
2answers
284 views

Good tutorial on using Quads for custom Text in OpenGL ES 2.0 on iOS

I'm currently new to OpenGL ES and am self teaching myself how to program iOS games. I'm currently playing with a project that I would like to put a HUD over with some custom text. I don't want to do ...
1
vote
1answer
147 views

Render with multiple textures in managed Direct3D 9

I am pretty new Direct3D and have been looking for a solution to my problem for a couple of days. Most of the tutorials I have seen that cover textures only use one texture. For my program I have ...
0
votes
1answer
141 views

ios opengl es render texture on clean C

sorry for my english I want to draw textures on clean C, no objective c! that it is necessary to write a library for ios / android I draw - (BOOL)createFramebuffer{ glGenFramebuffersOES(1, ...
0
votes
0answers
97 views

SIGSEGV error when rendering ETC1 compressed texture on Android

I'm having a segmentation error when drawing an object using ETC1 compression method on android. To be more specific, the error is this: A/libc(27217): Fatal signal 11 (SIGSEGV) at 0x5895c000 ...
1
vote
1answer
230 views

Render texture and normalized view rect in Unity

I'm using Unity 3D 3.5 pro. I've got this scene with two cameras in it. One of them is looking at a plane that has a render texture on it. The other is recording the render texture. When the camera ...
0
votes
0answers
92 views

SFML2 render to texture anti-aliasing not working

Im trying to render an anti-aliased opengl scene to texture using the lastest sfml 2. But it wont anti-alias. I came across this post http://en.sfml-dev.org/forums/index.php?topic=3622.0 and it made ...
2
votes
2answers
113 views

android textured text

How can I make a text with texture instead of text color or gradient(for example png file)? Something like this. I understand the logic, that I should make text color transparency and put under the ...
0
votes
1answer
70 views

Using textures in Cuda when kernel code is in PTX file and Host code also generates PTX file

I am having trouble getting texture read to work using Cuda [4.2] on Windows. My program reads a ptx file containing all the kernel modules. In addition the compilation process spits out an ...
0
votes
1answer
107 views

openGL using glVertexAttribPointer

So I created a quad using glBegin(GL_QUADS) and then drawing vertices and now I want to pass into my shader an array of texture coordinates so that I can apply a texture to my quad. So I'm having ...
0
votes
1answer
89 views

In XNA , what's the difference between the rectangle width and the texture's width in a sprite?

Let's say you did this: spriteBatch.Draw(myTexture, myRectangle, Color.White); And you have this: myTexture = Content.Load<Texture2D>("myCharacterTransparent"); myRectangle = new Rectangle(10, ...
0
votes
0answers
61 views

Cannot pass current result to the next rendering

I am trying to do a progressive rendering using the previous rendering as a texture to the next one. EDIT 1: As suggested in the comments, I did updated my version of THREE.js to the latest ...
3
votes
2answers
150 views

Adding texture to a plane made of vertices

I've created a plane at OpenGL with this code: glBegin(GL_TRIANGLE_STRIP); glColor4f(0.8, 0.8, 0.5, 1.0); glVertex3f(startlen, height, startwid); glVertex3f(startlen, height, startwid + width); ...
0
votes
1answer
113 views

Can you feed an image loaded as texture as anothers texture mipmap in three.js?

This is a question, not an issue. I'm working in a terrain with atlas texture. To mitigate the color bleeding i want to feed the terrain texture with mipmaps built in an external tool. For the time ...
0
votes
1answer
60 views

Gaussian filter application in rendering algorithm

So I'm implementing this one rendering algorithm and part of the algorithm has the following component dealing with accessing texels from a texture the size of the screen. The code below hopefully is ...
0
votes
1answer
137 views

Transparent background behind font

With LWJGL and OpenGL, I want to draw a textured rectangle. Above that, I want to write some Text using the Slick Library. My Problem is that when I draw the Text before the rectangle, the font has ...
0
votes
1answer
301 views

Three.js texture for mesh with custom geometry

I am trying to create a house geometry and attach different textures to the faces of the geometry. I am using r55. The problem is that faces with material created from a texture just don't appear. ...
1
vote
2answers
210 views

OpenGL Texture White Line Gaps

As a side project I've had for a while now I've been trying to create some Voxel terrain. However, to my dismay the textures seems to not be working properly. I'm mapping the texture with GL_REPEAT ...
1
vote
1answer
44 views

Cubic textures and pixel formats in Ogre3D

In the Ogre material file, the cubic texture is defined as: cubic_texture <front> <back> <left> <right> <up> <down> separateUV Does this mean that it's ...
0
votes
2answers
168 views

Pass Texture to D3D9 Effect for Mesh Object

I'm trying to set up some DX9 code to render Shaders as I'm looking to delve into them a bit deeper. I have a very basic shader that compiles and displays fine in FX Composer, but after setting up my ...
0
votes
2answers
69 views

using glTexture in a shader

I'm using openGL and what I want to do is render my scene to a texture and then store that texture so that I can pass it into my fragment shader to be used to render something else. I created a ...
0
votes
2answers
231 views

Creating correct texture coordinates for a sphere in opengl

I'm currently trying to render a sky dome. The sphere is created using gluSphere and inside a vertex shader I extract the spherical coordinates from each vertex. I then map both sphere coordinates ...
1
vote
1answer
336 views

Android OpenGL ES 2.0 texture update shows black

I'm trying to render a XML layout to an OpenGL surface. That works correctly, and I can do 3D effects on the layout. But, when I try to update it and render it again, it does not work. With twiddling ...
2
votes
1answer
262 views

Bad texture on Android devices with lower GL_MAX_TEXTURE_SIZE

I recently tested one of my games on several Android devices. During that, I came across a weird encounter with Galaxy S2. When I launched the game, the whole game was working fine except the ...
0
votes
1answer
154 views

Drawing part of a texture on a triangle in openGL

I'm trying to draw part of a texture on a triangle. The triangle is defined by 3 points. One of the points will always be the center of the image. Now I want to draw a part of the texture on that ...
2
votes
1answer
92 views

Drawing to images/textures in html5

The situation: I'm creating a game where every player has its snake. The problem: Under special circumstances, a players snake could be of more than thousand arcs. I redraw the canvas on every tick ...
0
votes
3answers
55 views

OpenGL - how do I map texture on this?

I have a floor in my game, which is made of 100x100 quads. I couldn't do it just with 1 quad, because it would ruin lighting. And here is the problem - how do I put a single texture on all of them? ...
2
votes
1answer
155 views

Image is not displaying in its original size in cocos2d

originalImage = [UIImage imageNamed:@"IMG_1968.PNG"]; NSLog(@"originalImage Height :: %f", originalImage.size.height); NSLog(@"originalImage Width :: %f", ...
2
votes
2answers
142 views

Changing texture in HLSL

float4x4 WVP; texture cubeTexture; sampler TextureSampler = sampler_state { texture = <cubeTexture>; MipFilter = Point; MagFilter = Point; MinFilter = Point; AddressU = Wrap; AddressV = Wrap; ...
0
votes
2answers
172 views

Terrain Texturing

Is there a way to blend 2 textures in a gradient manner? ex. first textures starts at top and goes to the bottom, and second one starts bottom and goes top. I want to make them loose opacity like in a ...
0
votes
1answer
110 views

OpenGL texture interpolation in shader

How are texture coordinates interpolated in a GLSL shader? I'm trying to downsample an image from screen size to 1/4 its original size. This is a pretty simple procedure but it doesn't seem to be ...
0
votes
1answer
153 views

Cocos2d X .Spontaneous unload of resources

On loading scene I preload all resources like sprites, sounds, etc. But one of my test devices (HTC Desire, Android 2.2.2) unloads resources after loading, so when the game tries to play some sound or ...
0
votes
1answer
109 views

Three.js texture looks clipped from right-side

I have a mesh on top of a another mesh like below ( top mesh area is dark ) If I adding texture image like that; var logoTexture = THREE.ImageUtils.loadTexture( logoPath ); mesh.material = new ...
0
votes
1answer
76 views

Texture coordinates issue with OpenGL, QT

Whatever I use for the texture coordinates, only the bottom-left pixel is ever shown (the rectangle has a solid color). Here I set the texture coordinates: glMatrixMode(GL_TEXTURE); glPushMatrix(); ...
0
votes
0answers
83 views

Texture superposition with blending in OpenGL

I'm working on a VJing app. There's the specs : I use OpenCV to grab frames from multiples video sources. I'm processin them using GLSL to apply different effects. The goal is to creat a output ...
0
votes
0answers
72 views

Terrain Generation and texturing

I need to texture my generated terrain for which i use the code below: ` private final int SIZE = 17; float[][] heightmap = new float[SIZE*2][SIZE]; private final int MAX_HEIGHT = 12; private ...
2
votes
1answer
201 views

Adding live webcam texture to OpenGL

I followed the examples of the OpenGL Book and extended it to show a .3ds file. I also managed to use OpenCV to get an image from my webcam, apply the surf operator to it and find the homography for a ...
3
votes
3answers
1k views

Old paper background texture with just css

Is it possible to create a background texture with pure CSS (without using an image) that looks like an old paper, e.g. like this: http://i.stack.imgur.com/kb0Zm.jpg I' aware that there are ...
0
votes
2answers
81 views

Texture is “inverted”

I just started using Blender yesterday so please go easy. I'm using Blender 2.64a on OS X. I created this scene: a single plane and a playing card (a flattened cube). The top and bottom faces of ...
2
votes
1answer
476 views

AS3 Softbody texture starling

I have created a soft body circle in nape. And now I'm trying to get it texturized. But I'm having trouble, and I can't find the answer. Thats why I'm turning to you guys. Im trying to do what he is ...
0
votes
0answers
85 views

Solidify - Blurring Texture Edges - C++/C#

I want to implement Flaming Pear Solidify plugin in my Unity3D Atlas Generator plugin. Basically I have no idea how the FP Solidify works. So any idea of implementing this algorithm is welcome. My ...
1
vote
1answer
62 views

Python From array of floats to texture

I need to create a texture from matrix of floats([0..1]). Texture should show a grey squares, but only show a white rectangle :( I have this code: def _generate_image(self): i_len = ...
1
vote
2answers
170 views

Android opengl issue (weird)

this is a weird one. I have a basic application (dashboard, ...) and a GLSurfaceview in which I draw 3D objects and textures. All runs pretty but when I go back in other activities, hmm well a ...
0
votes
2answers
153 views

Texture alpha channel does not work in opengl

How can I use image with alpha channel? Since now i have tried this: glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, ...
0
votes
2answers
149 views

The best way to texture a cube in openGL

Which is the best way (lowest memory, fastest speed) to texture a cube? after a while i have find this solution: data struct: GLfloat Cube::vertices[] = {-0.5f, 0.0f, 0.5f, 0.5f, 0.0f, 0.5f, ...
4
votes
2answers
70 views

opengl, textures have always the same size

I'm trying to apply a texture to a vertex array whit the following code: glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, texture); glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST); ...
1
vote
1answer
75 views

Dynamic fluid (interacting with gravity in real-time) on complex mesh surface

My question put simply is this: In detail how is the blood that goes along the characters surface done? It is shown in this video here from 0:34 and onwards. Ok so now some more details about what I ...
0
votes
0answers
161 views

ruby google sketchup plugin - importing textures from a directory

im new here and pretty much brand new to ruby. I am using ruby to write sketchup plugins with the Sketchup module, and i want to import all the image files (textures) from the directory ...

1 3 4 5 6 7 27