Tagged Questions
0
votes
1answer
23 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
106 views
OpenGL ES 2.0: What's the correct way to dynamically set texture coordinates in a GLSL vertex shader?
I'm trying to do the following in a vertex shader:
...
attribute vec2 tCoordIn;
uniform vec2 tCoordScale;
uniform vec2 tCoordOffset;
varying vec2 tCoordOut;
void main() {
...
tCoordOut = ...
0
votes
0answers
27 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.
3
votes
2answers
277 views
OpenGL ES 2.0 1 only using last bound texture
Please see Edit at end for progress.
I'm in the process of trying to learn OpenGL ES 2.0 (I'm going to be developing on Android devices)
I'm a little confused about the Vertex and Fragment shaders. ...
1
vote
1answer
334 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
320 views
2D Texture gets distorted when making a sub-pixel translation
I would like to know a theoretical reasoning why is this even possible: how translation of the geometry is related to the texture mapping.
I can only notice this effect when making a sub-pixel ...
-2
votes
1answer
173 views
OpenGL ES 2. Texture mapping to a quad (not square or rect)?
http://smotr.im/9KwB
There are some pictures:
1)a texture I have
2)a line I have already drawed with triangle strip
3)the result I need to achieve
The question is how to draw a texture inside these ...
1
vote
2answers
363 views
Draw outline using with shader program in OpenGL ES 2.0 on Android
I am using OpenGL ES 2.0 (on Android) to draw simple 2D scene has few images. I have background image and some others which have alpha channel.
I would like to draw outline around non-transparent ...
0
votes
2answers
447 views
How to create texture using GL_FLOAT in OpenGL ES 2.0?
When one calls:
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, texWidth, texHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, rawData);
it's easy to know how to format the data: pass in an array of bytes, in the ...
3
votes
5answers
539 views
Loading 4-channel texture data in iOS
I want to load 4-channel texture data from a file in iOS, so I consider the texture as a (continuous) map
[0,1]x[0,1] -> [0,1]x[0,1]x[0,1]x[0,1]
If I use the fileformat .png, XCode/iOS consider ...
0
votes
1answer
55 views
What is the practical reason behind power-of-two sized textures?
On one hand, I can understand the Mip-mapping (to be able to half the size recursive).
Is there anything else?
I'm just investigating if I have no intention to resize my textured sprites runtime, ...
3
votes
1answer
709 views
OpenGLES 2 — when to glBindTexture, and when to glActiveTexture?
Alright, so these textures are really confusing me. I've been looking at this tutorial (which I think is great), particularly the image captioned with "You can define up to 32 Texture Units, but just ...
1
vote
1answer
121 views
How to delete textures in OpenGL 2.x?
I followed this tutorial to create a basic game using OpenGL and after profiling it, discovered that even after a sprite is removed, the textures are not being released creating a memory leak. I ...
0
votes
1answer
40 views
Gluint of one Texture changes when loading other textures
When starting my app, I load a texture for a loading screen first. While the loading screen is displayed, I then load all the other textures, sounds, and set up everything for the app to run. ...
0
votes
1answer
181 views
Draw 2D texture without scaling?
I have just started playing with OpenGL ES 2.0, I managed to draw a 256x256 image and fill the entire viewport(320x460 in size). the image is scaled, as the screenshot shown below, but this is not ...
3
votes
2answers
633 views
How do I blend two textures with different co-ordinates in OpenGL ES 2.0 on iPhone?
I can blend two textures with different blending modes in the fragment shader when both the textures covers the same rectangles. But now my problem is, one texture is a plain rectangle with no ...
0
votes
1answer
52 views
OGL ES 2.0 Texture on plane
I'm having troube displaying a texture to a plane of two triangles.
My texture is a 32x32 RGBA bitmap.
I'm developing for android.
My plane is created like this:
float[] vertices = new ...
1
vote
1answer
306 views
3D Model and Texture creation
I've been trying to solve this for some time now and it seems that I'm not looking for the correct keywords because I did not find an solution yet.
My problem is that I would like to create a Texture ...
0
votes
1answer
467 views
iphone opengl es 2.0 non power of two
I thought the image file size doesn't have to be power of two in 2.0
but when I tried, it just showed black screen.
But it works fine with power of two images.
Can anyone give me some hint what I am ...
1
vote
0answers
265 views
Loading Iphone camera picture as texture using GLKTextureLoader in OpenGL ES 2.0 [closed]
I would like to use an IPhone camera picture as texture for an OpenGl ES 2.0 app.
To reach this goal I have used the code below. However it fails to load the texture as it seems the image from the ...
1
vote
1answer
2k views
OpenGL ES 2.0 texture not showing on some device
I found a 3D graphics framework for Android called Rajawali and I am learning how to use it. I followed the most basic tutorial which is rendering a shpere object with a 1024x512 size jpg image for ...
0
votes
1answer
438 views
Opengl ES2 clipping mask
I'm looking for a way to mask my entire viewport using a texture. In my case I would like to use a checkered black and white pattern (or any 2 colors) and only show the parts that are black on the ...
1
vote
1answer
204 views
Match texture coordinates to primitive size
I'm working on font generation solution and facing texture problem. I'm creating texture atlas dynamically and then mapping every letter by their texture coordinates.
Here's result of mapping "t" ...
0
votes
1answer
508 views
gles20 on android give black screen when I try to load a texture
I'm trying to load a texture (480x720px) as a background in my app, but it comes out as black. I'm a bit of a noob with GLES20 so I have followed a few examples on the internet to build my code, but ...
0
votes
0answers
161 views
Need to process 2 camera frames at once with OpenGL shader
I can't get two successive camera frames simultaneously passed on to my shader.
I'm using CVOpenGLESTextureCacheCreateTextureFromImage to generate the textures, and have been following a lot of the ...
1
vote
1answer
299 views
AndEngine GLES2 | Making Font resizable?
I know all the basic resizing stuff in AndEngine now but I haven't stumbled upon a good way on how to make text resizable. Basically what everybody is doing is that all fonts get declared as bitmaps ...
0
votes
1answer
625 views
Cannot get samplerCube / textureCube to work in OpenGL ES 2.0 (Android)
I desperately need help getting samplerCube / textureCube to work. I've spent many hours experimenting but cannot get it to work. I've searched Google but I cannot find a full example that works and ...
1
vote
2answers
1k views
Container format for ETC1 textures
I'm looking for a format that supports mipmaps, cubemaps and 3d textures for using on a OpenGL ES 2.0 game. On Windows, I was using .dds format because of its support for DXT compression. For mobile ...
1
vote
2answers
539 views
Need help to find bug in code with textures in Open GL ES 2.0 using shaders
Ive been using Open GL ES 2.0 Programming guide and am following chapter 9 about textures but ive set up the same pixel array (2x2- Red Green Blue Yellow) and it only shows red for the whole triangle. ...
3
votes
2answers
3k views
2 Textures, 1 Shader - OpenGL ES 2.0
ES 2.0 newbie here. I'm currently trying to make some 3D interlaced images from stereo images with ES 2.0 and the PowerVR SDK. I can output one image texture fine, but when I try to output the second ...
2
votes
1answer
2k views
OpenGL ES 2.0: Texture renders black, several hours without resolution :(
I'll keep it simple: The code listed at the end of this post is in top-to-bottom order within my project. I have an OGLES2.0 framework in place which renders everything except textures perfectly. When ...
1
vote
1answer
616 views
Using very large bitmap textures with OPENGL 2.0 Android
I have an application which views zoomable images using OPENGLES2.0, and want to render large textures - 1920x2560 and larger - and get GL_INVALID_VALUE errors when trying to load them.
How do I go ...
1
vote
1answer
1k views
Android OpenGL2.0 showing black textures
I am trying to draw textures onto quads in OpenGL2.0. So far I got the quads to show up and everything, but the textures are not there - the quads are all black.
My main suspicion is that i'm not ...
0
votes
1answer
401 views
Android OPENGL2 not drawing texture to quad
I'm trying to get some textures rendered on quads, but the screen turns out empty.
(Open GL 2.0)
I formerly used a static color shader on the quads, and the quads did appear on screen, so the ...
1
vote
0answers
2k views
Rendering Textures in OpenGL ES 2.0 with VBO/IBO (IPhone)
I'm trying to render a simple quad with a texture using a vertex buffer object and an index buffer object. I haven't seen any solutions for how to do this with an IBO using glDrawElements. In any ...
2
votes
1answer
3k views
Loading Textures fast into OpenGL 2.0
I am building a simple live wallpaper for Android. I am uploading the required texture into OpenGL ES 2.0 using the below code. I have loaded all my images into a single file of size 2048x2048. This ...
1
vote
2answers
2k views
Android: OpenGL ES2 Texture not working
UPDATE: got rid of the line GLES20.glEnable(GLES20.GL_TEXTURE_2D); But the line GLES20.glTexImage2D(GLES20.GL_TEXTURE_2D, 0, GLES20.GL_RGB, 256, 256, 0, GLES20.GL_RGB, GLES20.GL_BYTE, ...
1
vote
1answer
260 views
OpenGL on Android - Texture Mapping - Only top left pixel visible
I've been playing with OpenGL ES Android and somehow my textures are always filled with the color of the the top left-most pixel. I suppose the flags are wrong, but I've tried a many logical ...
2
votes
1answer
207 views
OpenGL ES 2.0: Better to pad texture pixels rather than use tightly packed data?
I've just seen a texture example which contains the code:
GLubyte pixels[4 * 3] =
{
255, 0, 0, // Red
0, 255, 0, // Green
0, 0, 255, // Blue
255, 255, 0 // Yellow
};
// Use ...
4
votes
2answers
2k views
How to create Stencil buffer with texture (Image) in OpenGL-ES 2.0
Can I have Stencil prepared with a texture (Image) in OpenGL 2.0
So that some part of the Image will be transparent and as a result it will be transfered as is
to Stencil buffer and then will use this ...
0
votes
1answer
199 views
iPhone Animated Sphere
I would like to build a sphere in opengles 2.0 that is animated. Basically I want to have a transparent sphere on which I have small images moving around randomly. I know how to make a sphere and to ...
1
vote
1answer
2k views
Reasonable texture sizes in android
I'm trying to develop an app that uses opengl on android, and ideally make it run on any phone as old as the original droid (or at least any phone that has OpenGL ES 2.0 support). Currently, I'm ...
0
votes
1answer
605 views
OpenGLES2.0 How to track down “Texture is a uniform color” bug - need ideas.
I have this problem with the display of my textured VBOs on OpenGLES20 (testing on an android motorola Xoom), where textures would appear as if they were taken from a single dot of the texture instead ...
2
votes
1answer
665 views
OpenGL 2D: glColor4 has no effect - what have I missed?
I'm porting a game from WP7 XNA to Android; everything was working using Canvas but it was too slow so I've switched to OpenGL ES, following the examples of Replica Island and SpriteMethodTest.
My ...
0
votes
1answer
1k views
Android GLUtils.texImage2D producing some black textures when using OpenGLES 2.0 shaders
I'm in the process of converting an app from OpenGLES 1.0 to OpenGLES 2.0 and I've managed to get most of it done. Annoyingly though a few textures (out of many and the same ones each time) render ...
0
votes
2answers
814 views
iOS / GLES2: How to programmatically determine maximum available texture units?
Determining maximum texture size is no problem:
How to detect maximum texture resolution on iPhone?
Also, the documentation specifies the maximum number of samplers that a fragment shader can ...
5
votes
2answers
3k views
Full screen background texture with OpenGL performance issue (iPad)
I am quite puzzled with the poor performance I'm seeing when drawing a full screen background using a textured triangle mesh in OpenGL: drawing just the background and nothing else maxes out at 40 fps ...
1
vote
1answer
2k views
HOWTO create OpenGL ES 2.0 SkyBox?
Can you give me hint to any good SkyBox example in OpenGL ES 2.0? I have found only OpenGL and does not work for me.
I am doing it this way:
Initialization:
glUseProgram(m_programSkyBox.Program);
...
4
votes
2answers
6k views
What is the maximum texture size available on the iPad?
Anyone know the maximum texture size for the iPad? I'm having trouble finding numbers for this.