Tagged Questions
0
votes
2answers
132 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
228 views
OpenGL 3.3 multitexture: GL_TEXTURE1 and following are always black (Only GL_TEXTURE0 works fine)
Every texture after GL_TEXTURE0 (texture on slot 0) is black.
Fragment shader (sample code to check different textures by changing weights):
#version 330
uniform sampler2D g_ColorTex;
uniform ...
3
votes
1answer
388 views
opengl - draw multiples elements with 2D texture
I am working on a n-body code with "glut functions" display. I would like to display each body with a 2D texture from a bmp image. Currently, I can draw a single textured element with the following ...
1
vote
1answer
195 views
Update miplevel of a texture after its creation in D3D11
In Direct 3D 11 one can create an empty texture using ID3D11DeviceContext::CreateTexture2D and update the texel data using ID3D11DeviceContext::UpdateSubresource method, specifying the required mip ...
0
votes
1answer
415 views
Texture Filtering Mode in 3D graphics
Is there any specific relations between the workload/ overhead of different types of Texture filtering modes? i.e. comparing for "no filtering mode", bilinear filtering and trilinear filtering? and ...
1
vote
2answers
144 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 ...
0
votes
1answer
1k views
how to draw textures using stb_image.c
I want to load this picture into a 2d texture and then draw it onto the screen. The main problem is loading the picture into a texture variable. The follow code output the correct width and height and ...
1
vote
1answer
412 views
Drawing text as textures on squares does not show anything
I'm new to OpenGL and I'm developing an Augmented-reality application for Android.
Until now, I was drawing white squares, perpendicular to the camera, pointing the user to the direction where a ...
4
votes
1answer
2k views
XNA draw / paint onto a Texture2D at runtime
Morning all (if its morning where you are)
I have been looking around and have not seen a satisfactory method for doing this so thought I would ask around...
Ideal world I would like to be able to ...
1
vote
2answers
410 views
GLSL Convolution with Large Kernel in Texture Memory
I'm very new to GLSL, but I'm trying to write convolution kernel with in a fragment shader for image processing. I was able to do this just fine when my kernel was small (3x3) using a constant ...
2
votes
1answer
2k views
How does XNAs Content.Load<Texture2D> operate?
I'm just curious if it actually loads the asset into memory every time it's called or if it looks it up, finds if it's loaded and if it isn't loaded it loads it once and just keeps references so the ...
0
votes
1answer
930 views
Background Texture Image in iPhone Drawn with Distortion in OpenGL ES
I'm having a problem rendering a background texture in my iPhone app. The following images show the problem:
http://www.tojamgames.com/wp-content/uploads/2010/09/background_layer1.png
...
1
vote
1answer
501 views
Problems with glDrawTex_OES
I'm not sure I'm using glDrawTex_OES correctly. In fact, I'm sure I'm not because I'm getting a black rectangle on the screen rather than the intended texture.
To get the silly points out of the ...
2
votes
4answers
7k views
Android GLSurfaceView glTexImage2D glDrawTexiOES
I'm trying to render a 640x480 RGB565 image using OpenGL ES on Android using GLSurfaceView and Native C code.
Initially I had a 0x0501 error with glTexImage2D, which I was able to resolve by changing ...
2
votes
2answers
994 views
Is it correct to load openGL textures like this?
I started some months ago an OpenGL project which became larger and larger... I began with the crashLanding sample and i use Texture2D.
I also use a singleton class to load my textures, and here is ...
2
votes
3answers
220 views
Is there a more efficient way to deal with 2^n pixels size requirement for OpenGL ES texture?
Sorry if my question is uncleared. Let me elaborate.
I have a rectangle of size 100 x 200, and I have a graphic size 100 x 200 which fits with the rectangle. Since OpenGL requires all textures to ...