For questions related to textures in computer graphics.
0
votes
0answers
18 views
How to change material in three.js?
<script src="build/three.min.js"></script>
<script src='js/libs/dat.gui.min.js'></script>
<script src="js/Detector.js"></script>
<script ...
0
votes
2answers
16 views
Copy A Texture to PixelBuffer (CVPixelBufferRef)
I am using an API which only gives me the integer id of the texture object, and I need to pass that texture's data to AVAssetWriter to create the video.
I know how to create CVOpenGLESTexture object ...
1
vote
0answers
30 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
67 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
50 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
43 views
UV calculation on custom 3d mesh
After making some research, i didn't find yet any formula that will offer me a way to push faceVertexUvs on my custom mesh (basically countries on top of a sphere), I need to burn world texture on ...
1
vote
1answer
32 views
Android+LibGDX - textures gone in Android UI activity only after finishing a Libgdx activity?
My situation is this:
I have 3 activities: 2 using Android UIs (shown below) and 1 a Libgdx AndroidApplication
I can go back and forth from my 2 menu activities all I want and it is WAI
I can go to ...
0
votes
1answer
28 views
How to get the color of a pixel on the screen for Shader (Open GL ES 2,0)
I use this simple Shader for texture mapping in Open GL ES 2.0
I need to add the code for the Overlay Blending Mode.
The Algorithm I understand everything.
But how to obtain the color of a pixel on ...
0
votes
0answers
33 views
How can I use ints instead of colors in a texture?
I'm trying to use fragment shaders to visualize some scientific data. My data is a 2D array of 4 byte integer values, and my idea was to just load that data into a texture and do some calculation in ...
0
votes
0answers
20 views
Uncaught TypeError: Cannot read property 'material' of undefined
i got a problem with texturing a collada human object.
i tried this and that, and of them is one of solution
but, i got this error :
Uncaught TypeError: Cannot read property 'material' of undefined
...
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
1answer
33 views
Making A Gradient Between 2 Colors in XNA
I am making a GUI library for Monogame/XNA, and I decided that instead of using textures for the buttons, I would use a struct to hold information on gradients and colors in the gradient. Then I could ...
0
votes
2answers
46 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 ...
-1
votes
0answers
19 views
spontaneous pixellation of textures at low fps when using per pixel shading in android
In my live wallpaper I'm using per pixel displacement (opengl es 2.0 shader) using a map to make a realistic waterfalls. it runs smoothly most of the times but when phone is using more app the live ...
1
vote
1answer
39 views
Multi-Texturing - Interpolation between two layers of an 3D texture
I'm trying to achieve terrain texturing using 3D texture that consists of several layers of material and to make smooth blending between materials.
Maybe my illustration will explain it better:
...
0
votes
3answers
104 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
40 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
0answers
28 views
Three.js - Why video texture stops to play after 3:27 minutes? [closed]
Tried it on local and it's all ok. But when I try it on a server, the video after some time stops.
0
votes
1answer
15 views
Change texture color with texture image
I am doing a slider with custom form and I found a smaple code, the problem is that it uses rectangles with stock colors and I need an image instead.
Here's the part of the code where the textures ...
0
votes
1answer
56 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
29 views
Transforming and drawing isometric textures
I'm planning to make a game and doing some research.
One of the features will be an isometric third-person view, which should be able to be rotated freely over 360 degrees.
This rules out the use of a ...
0
votes
1answer
75 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();
...
1
vote
1answer
68 views
C++ DirectX - texturing a 2D mesh
In DirectX I've been working with textured quads using the following struct:
struct TLVERTEX
{
float x;
float y;
float z;
D3DCOLOR colour;
float u;
float v;
};
However I ...
0
votes
1answer
40 views
Java LWJGL / Slick-Util texture.bind() binds the same texture everytime
I've been programming for a few years now and wanted to try Java LWJGL, and people recommended using the Slick-Util library so I set all of it up, etc. and I've been working on several projects, never ...
3
votes
1answer
79 views
How to create black and white transparent overlapping histograms using ggplot2?
I used ggplot2 to create two transparent overlapping histograms.
test = data.frame(condition = rep(c("a", "b"), each = 500), value = rep(-1, 1000))
test[1:500,]$value = rnorm(500)
...
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
41 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
...
0
votes
0answers
70 views
how to do particles texture mapping with three.js shaderMaterial?
what I'm trying to achieve is having a particle system where each particle have a portion of a given texture. Below is a example of a particles's buffergeometry using a shader material.
so far I can ...
0
votes
0answers
16 views
Texture coordinates: Two dimensional to one dimensional
I'm building a 3 dimensional texture, however I have no access to actual support for 3 dimensional textures. Thus I need to convert 3 dimensional texture coordinates to 2 dimensional texture ...
-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
0answers
35 views
THREE.OBJMTLLoader() shader material Issue
How to add shaders to object loaded with THREE.OBJMTLLoader(). Would like to add features like shininess e.t.c
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...
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
48 views
DirectX Release function with Textures (C++)
I have a question regarding DirectX 9, textures and releasing them.
I'm currently building a 2D game in C++. I have many textures that I'm loading with D3DXCreateTextureFromFileEx, and then when ...
0
votes
1answer
58 views
New CUDA Texture Object — getting wrong data in 2D case
In CUDA 5.0, NVIDIA added a "texture object" (cudaTextureObject_t) that makes textures a bit easier to work with. Previously, it was necessary to define textures as global variables.
I followed ...
0
votes
0answers
32 views
Drawing textured Quad using LWJGL
I'm trying to draw a textured quad with LWJGL, but I don't know why my quad renders with only one pixel of color.
This is the first time that i use LWJGL to create a 2D Fullscreen game.
Here's the ...
0
votes
1answer
48 views
Is it possible to use a canvas 2d as a texture a cube?
I am quite new to webgl/three.js . I try to add some small images on one face of a cube. After search a lot , i find use canvas 2d as one face texture maybe a solution. Here is my code, but cant get ...
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!
...
0
votes
1answer
26 views
Alpha blending for background
I am a beginner to DirectX, so please keep it simple for me. I have loaded a texture and displayed it on a quad, but the transparent background still shows. How can I stop that? I have tried a couple ...
0
votes
1answer
21 views
three.js aditional texture color
I have a mesh with a base color and want to add an additional color. The intensity the additional color shall be added with is given by a (Voronoi) texture.
Is this currently possible in three.js?
...
3
votes
1answer
63 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
32 views
Converting JOGL texture into BufferedImage
I am very very new to JOGL. I am trying to create a BufferedImage object(which is used in other part of my code) out of a textrure (not a Texture object but a texture with a handle, storage). In the ...
1
vote
1answer
66 views
Drawing a Texture to the Screen
I am attempting to learn DirectX, and am feeling quite overwhelmed. Can anyone tell me why this is not working? The image does not display to the screen. The window is just all black. I was trying to ...
0
votes
0answers
42 views
XNA .fbx Model import, invisible texture
i'm trying to import a .fbx model into my xna project. It works fine, but the texture is black. If i try to add a texture manually to it, the object just becomes invisible. Am i missing something?
...
1
vote
1answer
46 views
Copying render target data to D3DPOOL_MANAGED?
I'm using an engine which utilizes DirectX9.
It creates it's render targets using:
D3DXCreateTexture(
pD3DDevice, width, height, 1,
D3DUSAGE_RENDERTARGET, D3DFMT_X8R8G8B8,
...
1
vote
0answers
39 views
XNA Model rendering: texture is there, but messed up
I just found out how to export a 3D textured model from blender and successfully imported it into my xna program, but it seems to be sampling the texture wrong. At first I thought that my custom HLSL ...
0
votes
1answer
35 views
DX11 Programmatically filling a 3D Texture
I'm trying to fill a 3D texture with arbitrary data (either -1 or 1) using the map, write and unmap method mentioned on the MSDN, but I haven't been able to find any actual code examples of how to do ...
