Subset of the OpenGL 3D graphics API designed for embedded devices such as mobile phones.
0
votes
0answers
31 views
What is correct OpenGL ES version supported by my Android phone?
I getprop from my phone:
[ro.opengles.version]: [131072]
and read the code:
106 /**
107 * This method extracts the major and minor version of reqGLEsVersion attribute
108 * and returns ...
2
votes
1answer
22 views
GL_TIME_ELAPSED equivalent for OpenGL ES (2 or 3)
I'm interested in the amount of time it takes the OpenGL ES server to asynchronously run some sequence of commands. The way you solve this with regular OpenGL is to create a query object with the ...
1
vote
1answer
24 views
GKPeerPickerController is blank when invoked within EAGLView
I have an EAGLView-based class that runs the following code when a menu selection is made in OpenGL:
-(void) startPicker
{
self.gameState = kStatePicker;
GKPeerPickerController *picker = ...
0
votes
0answers
43 views
GTK rendering using cairo gles
I have successfully changed the backend of cairo that GTK uses to GLES(in the X11 window implementation). I am using a eglWIndowSurface for every gdkwindow. The problem I am facing is that because GTK ...
0
votes
3answers
27 views
drawing textures in opengl es 2.0
I have been having a problem with drawing texture in opengl es 2 on android for about 3 days and finally decided i should help after all my researching lead to dead ends. The problem is the texture is ...
0
votes
1answer
72 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
0answers
14 views
Is resident textures possible in OpenGL ES 1.1?
Is resident textures possible in OpenGL ES 1.1 like we have in OpenGL? Thanks in advance
0
votes
1answer
53 views
Multiple Shaders-Single Program or If-else conditions via a uniform variable?
I want to ask a simple question about OpenGL ES 2.x (or I think it is valid for most of the recent OpenGL releases).
Which one of the following is faster? :
Attaching/Detaching multiple shaders ...
0
votes
1answer
88 views
Looking for OpenGL ES framework for cross-platform development on Win/Linux/MacOSX/Android/IOS
I have to develop a cross-platform multimedia application that will run on Windows, Linux, MacOSX, Android and IOS. This application will have to be able to play audio/video content, display photos ...
0
votes
1answer
69 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 ...
1
vote
0answers
49 views
Google Maps SDK and additional OpenGL Controller on top
I'm trying to use Google's new Maps SDK with added child view controller stacked on top of Google Maps. Google Maps by itself work fine and just as expected. So does my openGL controller (GLKit) when ...
0
votes
1answer
25 views
OpenGL-es Sprite Sheets
I am making a game in OpenGL-es. I have a question, how do you make a sprite sheet in Xcode for you sprite png. Any code examples on how to do the sprite sheets may help.
Thank you!
-1
votes
1answer
46 views
Best Library to use for my card game application [closed]
I was wondering what library or libraries I should use for an android project I am working on.
Essentially I am creating a trading card game app, where players play various cards, some may cause some ...
0
votes
0answers
29 views
How to call canvas/bitmap in renderer Android Rajawali?
How would I call a canvas converted to bitmap within an opengl scene?
Here is my bitmap class:
public final class TextBitmap extends Plane
{
public TextBitmap(Context paramContext, float[] ...
0
votes
0answers
22 views
OpenGL-es Errors with GLK
I have a problem with my code in my OpenGL-es game. When I run my project it says this: Sending 'GLKMatrix4' (aka 'union _GLKMatrix4') to parameter of incompatible type 'GLKMatrix2' (aka 'union ...
0
votes
1answer
28 views
Is it possible to verify the components' size of non-color-renderable internal format?
In OpenGL ES 3.0 spec we can read:
ยง 4.4.5
When the relevant framebuffer binding is non-zero, if the currently bound
framebuffer object is not framebuffer complete, then the values of the ...
-3
votes
1answer
35 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
33 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
52 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
1answer
33 views
Create a custom map in android
I need to create a simple map application for android.
It's something along the lines of this one I made in HTML5 some time ago called CanvaMap.
I need to replicate it's features for Android. It can ...
0
votes
1answer
30 views
How to avoid fade-out on scaled CCSprite without cancelling anti-aliasing?
I have 3 sprites. Left edge, right edge, and repeating center which has 1 pixel width but is scaled up. The problem is that the scaled sprite fades out the farther away it is from the center:
I've ...
0
votes
1answer
44 views
center of rotation of multiple objects opengl
I am having problem rotating a cube along its own axis and not some arbitrary position. The cube is a collection of other 27 cubes and I have succesfully managed to rotate the group of cubes but not ...
1
vote
0answers
23 views
iOS - How to use opengl to draw different screen on iphone and apple TV?
Currently, I want to develop a small game like car racing. In the game, user will use iphone as a gamepad and apple tv will be display the main screen of gameplay. That means user control the car ...
0
votes
1answer
19 views
Render buffer in Open GL ES on iPhone
When drawing with Open GL ES one creates a framebuffer, attaches it to the context, creates a renderbuffer, attaches it to the context and, finally, attaches the renderbuffer to the framebuffer.
My ...
0
votes
0answers
58 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
25 views
White overlay on top of GPUImageGaussianSelectiveBlurFilter to show where blur is - GPUImage
I want to add a white overlay to the blurred area of GPUImageGaussianSelectiveBlurFilter, and a custom filter group I built by slightly modifying GPUImageGaussianSelectiveBlurFilter to make rotational ...
1
vote
1answer
90 views
“'OpenGL/OpenGL.h' file not found” triggered by GPUImage cocoapod in my iOS project
Despite the fact that I'm installing it in a iOS project, it looks like GPUImage is demanding a MacOSX library. I'm getting this error:
...
0
votes
0answers
75 views
Android Jellybean Gallery
While it is understood that the Google services such as G-mail and Google Maps do not have open-source code available. I was hoping that the Gallery application that exists in each Android platform ...
0
votes
1answer
91 views
Using Pixel Buffer Objects (PBO's) on Android
On Android, I'm trying to perform some OpenGL processing on camera frames, show those frames in the camera preview and then encode the frames in a video file. I'm trying to do this with OpenGL, using ...
0
votes
2answers
34 views
glBindFramebufferOES - documentation?
I am trying to find the reference pages / documentation of the method glBindFramebufferOES(and related directives) and spent a good amount of time googling. I am a registered iPhone developer and ...
0
votes
1answer
60 views
How to show legally DICOM 16 unsigned integer on the device are supporting 8 bit unsigned integer?
I'm working on a Medical app on iOS. The iOS devices just support GL_UNSIGNED_BYTE with GL_LUMINANCE or generally just support 8 bit per component. Now I have some grayscale images are 16 bit unsigned ...
0
votes
1answer
57 views
Understanding buffers in OpenGLES iOS
What I understand: There is what is called a frame buffer. It is an array of pointers to buffer objects. The buffer objects can be for example render buffers, texture buffers or other. If I want to ...
1
vote
0answers
44 views
How to download image in background with openGL
This is my class which works just fine when I do a download and use
the image on main thread. But I try to achieve the same using an
asynctask then this throws error.
---Class---
public ...
0
votes
0answers
31 views
Android GLSurfaceView launch glitch - transparent frame
First of all, to reproduce this problem, setup the BasicGLSurfaceView project from Android. Set a break point on the first line of:
public void onSurfaceChanged(GL10 glUnused, int width, int height) ...
0
votes
0answers
58 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,
...
0
votes
1answer
32 views
Android App strange behaviour when comeing back from sleep
since i am stuck on this problem and don't know where my mistake is I need to ask you guys.
When I first launch my app everything works fine, but when i press the "back" button on my phone to get back ...
2
votes
0answers
150 views
Strategies for optimizing OpenGL-based animated/zoomable 2D UI rendering
I've built a scene graph based rendering system for my app's UI (http://audulus.com if you're curious). The app's UI is procedural, and a lot of it is animated. There are few pre-rendered images.
...
-2
votes
0answers
27 views
Android LibGdx : drawMultiLine ; [closed]
I want to write multiline text inside frame, so I use LibGdx method - drawMultiLine. But really it don't work. code:
Assets.font16.drawMultiLine(batcher,Questions.questions[1],40,330,240, ...
0
votes
0answers
32 views
OPENGL ES 2.0 texture in circle
trying to load a texture into a circle, but I have big troubles with it. This is the original texture:
original texture
Here's the code:
private void circle(){
int segments = 20;
vertices = ...
1
vote
2answers
108 views
Android page curl with images streaming from web?
So, I am using https://github.com/harism/android_page_curl , this project to achieve the curl functionality to create a book. But I want to achieve the same while streaming images from web directly, ...
0
votes
0answers
20 views
How to render 2 different objects with different textures?
I am using OpenGL ES with GLKitBaseEffect. I started rendering a single 3d mesh with a single texture. Every is fine and dandy. Now i added a second base effect (for the 2nd texture) so i can render a ...
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 ...
-2
votes
0answers
36 views
Sand Simulation with gravity in z-direction [closed]
I am trying to create a Sandbox Simulation similar to this video
http://youtu.be/QQHo5YJkumo?t=16s
Features are
Sand Particles always live (custom CCParticleSystem or opengl )
Has to perform well ...
1
vote
1answer
81 views
GPUImage: Normalize the blur size of GPUImageGaussianSelectiveBlurFilter across multiple image sizes
I want to keep a relative constant blur size across images of different resolutions using GPUImageGaussianSelectiveBlurFilter of Brad Larson's GPUImage.
Say I have two images for sizes 1000x1000 and ...
0
votes
1answer
84 views
Drawing circle in OpenGL ES 2.0
I got a problem with OpenGL ES 2.0 for iPhone.
I'm trying to draw a simple circle textured with this code:
double qualite = 40.0f;
double rayon = 0.5;
double TWOPI=2*M_PI;
double step = ...
0
votes
0answers
50 views
Portable C++ OpenGL toolkit focused on mobile devices and finger-friendly GUI?
Are there any OpenGL UI toolkits that focus on a finger-based user interactions and have smilimar behavior to mobile OSes like iOS and Android?
I've seen many, many posts about cross-platform GUI ...
0
votes
1answer
49 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 ...
1
vote
3answers
48 views
Sprite movement based on rotation
I have a sprite in Android OpenGL. This sprite (a small beetlebug) is always moving in a forward direction and I use:
sprite.setPosition(posX, posY);
Now I have a rotation method, when the user ...
0
votes
0answers
50 views
opengl android open dialog in ui thread
Heyho,
my current problem is: I have an touch-event via onTouchEvent() of the OpenGL SurfaceView. As I know, this method is running in the main-OpenGL Thread or something like that. Whatever, when ...



