Tagged Questions
0
votes
0answers
17 views
Shader doesn't work - OpenGL ES
I have created a program that allows me to display 3D objects and now I want to make a cut in relation to another object. Here is my result : screen.
The screen shows that we can see through the cut ...
1
vote
1answer
22 views
Is glDrawArray preferred way for dynamic vertices?
I am currently using glDrawElements to render a mesh (terrain) that may have occasional udpates to it (terrain morphing). Wondering if i should technically go with glDrawArrays instead?
1
vote
1answer
33 views
Retrieve the value of gl_FragColor
This site(GPGPU programming with OpenGL ES 2.0) talk about how to use opengl es2.0 to do gpgpu
The problem of mine is how to retrieve the value of
gl_FragColor back to the cpu site(host)?
fragment ...
-1
votes
1answer
21 views
SIGSEGV when enabling attribute
I am trying to render an object in an android app. The geometry is based on an interleaved vertex buffer (position data and normal data) and an index buffer.
The vertex shader expects those two ...
0
votes
1answer
37 views
Rotation in OpenGL ES 2.0
I have a 2x4 matrix. which represent 4 points of a square. I need to rotate said square by x radians (which obviously can be converted to degrees) with the rotation point/ anchor being the center of ...
0
votes
1answer
27 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 ...
-1
votes
2answers
35 views
Keeping Shader Source Code Hidden
The following StackOverflow response explains several different ways to get source code from a shader after the shader source code has been introduced into the application. While, typically people ...
0
votes
1answer
23 views
error when creating program and trying to get attribute Location | Opengl ES 2.0 Android
I am trying to draw a textured square on the screen, but whenever I try to use glGetAttribLocation it gives me a runtimeException and glError 1280. I have no clue why when tested on a new end device, ...
0
votes
1answer
31 views
Webgl GLSL / Open GL ES 2.0
I'm curently porting an engine written for android and IOS devices using OpenGLES 2.0 to webgl and I stumbled uppon a problem using shaders. Most of the shaders written for the mobile app doesn't work ...
2
votes
0answers
44 views
Additive blending artefacts with OpenGL ES 2.0 on some Android devices
I am developing a cross-platform game for Android and iOS. For a couple of billboard-like objects I am using additive blending(glBlend(GL_ONE, GL_ONE)) with black background textures. The rendered ...
0
votes
2answers
24 views
OpenGL - Pass on the output of multiple programs to a new texture
How do I pass on the data drawn to a frame buffer to a new openGL program or texture?
Use case of what I am doing now:
Creating a texture from a UIImage
Passing it on as a uniform sampler2D by ...
0
votes
1answer
35 views
How to flex a 3D texture with OpenGL ES?
I have tried to draw some 3D squares (with OpenGL on iPhone) and make them rotate around, now they look like a sphere.
...
0
votes
0answers
16 views
opengl es 2.0 in snap to edge and snap to middle in android programmmatically
I tried to make snap to edge and snap to middle effect of line like Auto cad.
I used OPENGL ES 2.0 Android Technology to draw this line.
I successfully make effect for snap to edge. But , when i ...
0
votes
2answers
47 views
Using GL_UNSIGNED_SHORT_4_4_4_4 for textures
I have a method for loading texture into OpenGL:
bool AndroidGraphicsManager::setTexture(
UINT& id, UCHAR* image, UINT width, UINT height,
bool wrapURepeat, bool wrapVRepeat, bool ...
-1
votes
0answers
23 views
GLES20 - Calls to glCreateShader, glCreateProgram, glGenBuffers fail on second try [closed]
Argh, this is annoying.
I have written an OpenGL ES 2.0 program for my Android tablet, based off of the examples.
During the initial setup, I call glGenBuffers, glCreateShader, and glCreateProgram ...
3
votes
3answers
145 views
Optimizing performance of a heavy fragment shader
I need help optimizing the following set of shaders:
Vertex:
precision mediump float;
uniform vec2 rubyTextureSize;
attribute vec4 vPosition;
attribute vec2 a_TexCoordinate;
varying vec2 tc;
...
0
votes
1answer
68 views
iOS OpenGL ES 2.0 Draw 3D Line and Set Color
I can successfully draw lines in OpenGL ES 2.0 on the iPhone with the following code. I am disabling textures and blending but my GLKBaseEffects 'useConstantColor' does not seem to color the line - it ...
0
votes
1answer
66 views
OpenGL ES 2.0 graphic works on emulator but don't work on real device
I'm making some small Android app using augmented reality. I'm trying to display graphic by using OpenGL ES 2.0. The scene I'm tying to display is very simple, there !no! textures only a few ...
-3
votes
1answer
34 views
Develop opengles games in iOS [closed]
it's very boring question to everyone but i did't get any idea of my question that'y am asking here,if you know please guide me
I have year of experience in iOS application development not in game ...
0
votes
1answer
31 views
Android opengl.Matrix class issue
Typical rotation formulas are (wiki)
Lets take, for example rotation around X-axis at 45 degrees. cos45 = sin45 = 0.707...
So the result matrix should be
[ ...
1
vote
1answer
50 views
Can GLES 1.1. use GLES 2.0 textures / framebuffer
I am working on an application that is primary Open GLES 1.1. However there are some large operations that need to be done per-pixel.
A full on convert is currently out of the question. So the plan ...
0
votes
0answers
54 views
iOS OpenGL ES 2.0 Multi-Texture Decal Images Do Not Show Up
I am trying to use a satellite image and the base image and another image that just has a number to be a 'decal' image which I render on top of the satellite. Here are the 2 images:
My ...
0
votes
0answers
56 views
iOS OpenGL ES 2.0 MultiTexturing Decal is Semi-Transparent
I have a function that adds billboard quads to which I map a texture. This texture moves around a 3D globe as it is rotated. My drawInRect looks like this:
- (void)glkView:(GLKView *)view ...
0
votes
1answer
44 views
Understanding of z axis
I have 2 trinagles with coords:
static float squareCoords[] = {
// red triangle
0.0f, 0.0f, 0.5f,
0.25f, 0.5f, 0.5f,
0.5f, 0.0f, 0.5f,
//black triangle
-0.1f, -0.1f, 0.1f,
...
1
vote
1answer
43 views
Why use VBO's and/or IBO's as opposed to just simple Vertex Data?
So what's the benefit to using VBO's (Vertex Buffer Objects) and IBO's (Index Buffer Objects) as opposed to using simple Vertex Data?
When is a good time to use them? Would it be more complicated to ...
0
votes
1answer
48 views
Drawing Multiple identical pyramids in opengl ES 2.0
I want to draw as many pyramids to fill up the space. I can draw a single pyramid, change its color etc. But, now, I want to draw a lot of pyramids that can fill the screen. I want to use a single set ...
0
votes
1answer
81 views
onDrawFrame, requestRender, and render thread? | OpenGL ES 2.0
i have a problem running my app using an external Thread for game loop in OpenGL ES 2.0.
here is my onCreate in my Starting class:
@Override
protected void onCreate(Bundle savedInstanceState) {
...
-1
votes
0answers
29 views
How to calculate 3d object coordinates into 2d screen coordinates OpenGL 2.0 [duplicate]
I'd given several frustrating trials on creating a Touch Event with a specific 3d object in OpenGL, thus meaning: I want to touch one of several Squares and want something specific to happen if I ...
0
votes
1answer
52 views
Good WebGL books/literature to learn the concepts [closed]
I recently started studying WebGL, and it's all very exciting. I really want to be able to code stuff on my own, but unfortunately, I have to rely a lot on libraries like three.js and matrix utility ...
0
votes
1answer
27 views
Batching quads creates bad color blend opengl es2
I'm trying to batch a bunch of rectangles/quads and getting some odd blending:
Each rect seems to get a little bit of its neighbor's color.
Here's my test code:
typedef struct {
Vertex bl;
...
-1
votes
1answer
32 views
OpenGL ES 2.0 Inner face color on iPad
I have an application that loads and displays obj files in 3D(I use ninevehGL for it), and I would like to know if it is possible to color the inner faces of an object?
0
votes
0answers
33 views
Texture not animating only showing blue quad
I am trying to move my texture coordinates however I am only getting a blue screen for some reason
here is what my quad looks like
I am not really sure what I am doing wrong
I have tried moving the ...
0
votes
1answer
25 views
Sharing VBOs among Multiple GLKViewControllers?
I load my 3D model files and load their vertex, texture and normal during application launch in a background thread. These models are used by 2 GLKViewControllers. What I want to do is bind the data ...
0
votes
0answers
36 views
OpenGL ES 2.0 texture not animating
I was wondering if anyone could help me as I cannot seem to get my texture to animate. I am trying to use my bump map to make a wave like effect.
here is my vertex shader
attribute highp vec3 ...
1
vote
1answer
42 views
iOS/Android Going back to OpenGL 1.1 instead of using 2.0
So this question has been asked a few times but the examples I have seen where in 2010,2011
2 years ago I wrote a nice little OpenGL 1.1 3D framework for iOS and I got to understand most of what I ...
0
votes
0answers
42 views
Android OpenGL 2.0 and multiple light sources / Balls of light
So I been following this example http://www.learnopengles.com/android-lesson-six-an-introduction-to-texture-filtering/ which is awesome! I have expanded it so I can move around as a person, and have ...
0
votes
1answer
39 views
Can't see lights working openGL ES 2.0
I have set up my lighting in my code and in shader but cannot see anything apart from the quad I have at the moment. The lighting doesn't work and I can't really see where I have gone wrong.
I have ...
0
votes
1answer
41 views
How to replicate adding/mixing of HSV values in RGB space
At the moment I'm doing a colourizing effect using additive blending in HSV space. Have a diff value in HSV space which is added to an image texture's individual pixels to get the desired color ...
1
vote
1answer
104 views
No OpenGL context found in the current thread
I am using LibGDX to make a game. I want to simultaneously load/unload assets on the fly as needed. However, waiting for assets to load in the main thread causes lag. In order to remedy this, I've ...
-1
votes
0answers
44 views
skybox won't draw OpenGL ES 2.0
I am using the PowerVR SDK and currently I am trying to draw a skybox around a quad(my quad is made up of 2 triangles) when I try to draw the skybox it doesnt draw at all and half of my quad is gone. ...
0
votes
1answer
38 views
Depth texture as color attachment
I d'like to attach a depth texture as a color attachment to the framebuffer. (I'm on iOS and GL_OES_depth_texture is supported)
So I setup a texture like this:
glGenTextures(1, &TextureName);
...
0
votes
1answer
58 views
Is my situation a good case to use GL_STATIC_DRAW?
I have a textured polygon mesh that I plan to be move-able based on the user's various inputs.
For example: the user can move the vertices in various directions. But the number of vertices and the ...
2
votes
2answers
60 views
How does UIImageView animate so smoothly? (Or: how to get OpenGL to efficiently animate frame by frame textures)
To clarify, I know that a texture atlas improves performance when using multiple distinct images. But I'm interested in how things are done when you are not doing this.
I tried doing some ...
1
vote
1answer
50 views
Texture won't load OpenGL ES 2.0 PowerVR SDK
I am currently having problems with my texture loading using the PVR SDK. I know that both of my textures have a linear sample filter. However it fires my message that I have set if a texture load ...
1
vote
1answer
77 views
OpenGL ES 2.0 vbo white screen
I have been trying to get my game engine to work on android and I got stuck at vertex buffer arrays. It works using FloatBuffer, but when I tried to render with VBOs I only got a white screen. So I ...
0
votes
1answer
94 views
Using OpenGL ES to do texture mapping on simple polygons?
Intro:
I'm brand new at OpenGL. I first go familiar with texture mapping and basic transformations/translations on OpenGL on my PC.
Now it seems I'm basically re-learning everything as im trying to ...
0
votes
1answer
57 views
Android OpenGL 2.0 : Object Picking (seeing if you hit a object with a ray)
So I am trying to get object picking working in OpenGL 2, in OpenGK 1 I used the glpixelColor which was pretty straight forward.
I have the following code to give me the start and end point of my ...
0
votes
0answers
66 views
Shader program in OpenGLES 2 doesn't link on my device, empty log
I have a shader pair that is being compiled and linked successfully on other devices (Jelly Bean AVD, Nexus 4, SGS 3), but not on my device (HTC Desire).
The loading code is the same as the NDK's ...
0
votes
1answer
69 views
OpenGLES 2 without shaders
Probably the title of this question sounds a bit off.
I'm trying to follow this tutorial http://ogldev.atspace.co.uk/www/tutorial02/tutorial02.html
it is for OpenGL 3.3 but I suppose that I can ...
3
votes
2answers
97 views
Placing multiple images on a 3D surface
If I was to place a texture on the surface of a 3D object, for example a cube, I could use the vertices of that cube to describe the placement of this texture.
But what if I want to place multiple ...

