Tagged Questions
1
vote
1answer
25 views
Why is my VBO updated on 2nd click?
I have this method (InvertPolygonMesh) which basically takes an array (my VBO) and inverts all vertices along the Z axis. This method is directly invoked by the click of a button (IBAction). Now for ...
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
0answers
26 views
Update texture in fragment shader in Cocos2d
I'm trying to update texture in fragment shader without any luck. Looks like shader reads texture just once and then no updates. Here is my code:
Shader init
CCGLProgram *shader = [[CCGLProgram ...
0
votes
1answer
30 views
How to use a background image in opengl es [duplicate]
I am making a solar system project in OPENGL ES in android with an earth and a sun . I want to add a back ground image with stars in it . please tell me how to put a background image in it....
0
votes
0answers
32 views
Capture UIWebView screenshot of video?
I'm currently trying to take a screenshot of a video in my UIWebView.
It turns out black though. I'm wondering: 1) Are webview open GL objects? 2) should be trying to capture an OpenGL view? Has ...
1
vote
0answers
36 views
Sparkles and shine cocos2d shader
I have started to work with shaders(cocos2d 2.1) and trying to make sparkles and glossy moving effect like in this game:
game with cool shiny effects
There are a couple of issues with that:
Is there ...
0
votes
1answer
19 views
How to spin a sphere around its own axis in opengl es
I am making a solar system project . My sun is stationary at (0,0,0) and my earth is stationary at (0,0,45). now I want my earth to rotate around its own axis while remaining fixed at its position . I ...
0
votes
0answers
27 views
What AR libraries would be useful in order to develop an iOS app for showing information about certain objects?
I am starting an AR project for a client which involves using AR in order to show information about certain objects. In this project, for example, the user would point the camera at a car. Depending ...
0
votes
0answers
38 views
Cut/Crop part of CCsprite cocos2d iOS?
Suppose i have a person's face in a CCSprite. What i want to achieve is cut the lips portion of the face into another sprite and the original sprite gets transparent at the lips area if i have ...
0
votes
0answers
26 views
Can't generate a video texture in OpenGL using CVOpenGLESTextureCache
I'm trying to use a video as a texture in an iPhone OpenGL ES program using GLKit. I set up vertices and texture coordinates and then do the OpenGL-related stuff in GLKit callback methods, like this:
...
-1
votes
0answers
19 views
Clipping Cocos2D Sprite behind CGRect
I have a rectangle (CGRect) created. I want certain sprites that I specify to be clipped when they pass partially or completely into the rectangle. I don't want to simply set the sprite invisible when ...
3
votes
1answer
53 views
Translate 3d object center coordinates to 2d visible viewport coordinates
I have loaded an wavefront object in Iphone OpenGL.
It can be rotated around x/y axis, panned around, zoomed in/out.
My task is - when object is tapped, highlight it's 2d center coordinates on ...
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.
...
1
vote
1answer
33 views
How to make rotatable 3D Cube with UIView on each side
I would like to implement something like this cube menu: https://itunes.apple.com/us/app/swiss/id343038584?mt=8
I want to add UIView on each side of the cube and to rotate only by x axis.
Any good ...
0
votes
0answers
21 views
OpenGL ES texture blending is not being affected
Note: I am using GLKBaseEffect.
Im not sure what i could be doing wrong.
Basically, for my GLKBaseEffect, i have setting up 2 textures. But i am only seeing the 1st texture (texture2d0) rendered. I ...
0
votes
1answer
64 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
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
53 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
2answers
31 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
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 ...
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
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 ...
0
votes
1answer
82 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 = ...
1
vote
1answer
29 views
How to update VBO vertex data directly?
I have a vertex buffer and an index buffer to render a polygon mesh.
I would like to manipulate the position of N number of vertices (move them around independent of other neighboring vertices).
How ...
0
votes
0answers
28 views
crop AVCaptureVideoPreviewLayer and apply color effect
I have cameraView using AVFoundation framework. When i alloc AVCaptureVideoPreviewLayer it display videoStream. How to apply crop to some portion of this AVCaptureVideoPreviewLayer layer and apply ...
1
vote
1answer
51 views
How to show UIButton over GLKView with UIViewController - IOS?
I am new to OpenGL, I have been trying to show a button over the GLKView, but buttons are not showing. Here is what I have done...
context = [[EAGLContext alloc] ...
1
vote
2answers
138 views
iOS OpenGL ES 2.0 Billboard Object On Sphere And Rotate With Sphere
I have a sphere (earth) in OpenGL ES 2.0 for iOS. I also have markers that I want to place at lat/lons on the earth - but I want the markers to always face the user ( billboards ) but also move with ...
0
votes
1answer
30 views
Unable to display 2 GLKViewController at the same time
I am building an app that is required to show to opengl views, one fullscreen and the other one smaller as an overlay. The two views represent 2 completely different apps.
Right now it seems I can't ...
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 ...
-1
votes
0answers
36 views
How to draw my own map on iOS? [closed]
I'm developing a indoor map app. I'm current using Quartz 2D to rendering my map on iPhone, but the result is not so good. What should I do? Do I have to use open GL to draw the map? Or are there any ...
1
vote
0answers
33 views
What is the maximum size of a uniform array that can be passed to a shader in ios?
I am using instanced rendering by passing an array of model view matrices. What is the maximum array size possible for a particular uniform?
0
votes
1answer
66 views
OpenGL ES 2.0 How to Correctly Setup glVertexAttribPointers
I'm trying to render some custom 3D object using the basic XCode OpenGL ES 2.0 template. I've been reading Ray Wenderlich's blog on OpenGL ES 2.0 to try to get started. No matter what I do my simple ...
0
votes
0answers
16 views
Xcode Opengl game, object goes off screen [duplicate]
im making a game using the accelerometer and the uiimage *person doesnt stop at the edge of the screen. This is my code, so how do i fix it?
CGFloat leftOfWorld = 0.0f;
CGFloat minCenterX = ...
0
votes
1answer
41 views
Making a opengl game with a moving UIImageview but i can get it to stop at edge of screen
Hi the title pre much sums it up, it is using the accelerometer but it just keeps going off the screen, im 15 and i am having heaps of trouble trying to get it to stop at the edge.here is my view ...
-1
votes
1answer
66 views
Code iPhone OpenGL app completely in objective-C? [closed]
I am now committed to starting on an iPhone game, using OpenGL.
So far I've saved a few good/great looking links, for reference (i.e. tutorials, samples),
but here's my simple question that I can't ...
0
votes
1answer
53 views
Michael Daley's particle emitter in ES 2.0 [closed]
I am trying to port Michael Daley's particle emitter (http://www.71squared.com/en/article/806/iphone-game-programming-tutorial-8-particle-emitter) to ES 2.0.
Changed the renderParticles method to ...
0
votes
0answers
34 views
using the rotationmatrix to get the position ahead of current viewpoint
I have the following code to get the device's position in 3d space.
CMDeviceMotion *dm = motionManager.deviceMotion;
CMRotationMatrix r = dm.attitude.rotationMatrix;
I'm trying to work out the ...
-3
votes
1answer
59 views
Developing games using cocoa2D and OpenGL [closed]
I'd like to start developing iOS games.
What do I need to learn to switch from simple UI apps to real games? Is there any simple tutorials available to learn animations using cocoa2D or OpenGL?
3
votes
0answers
68 views
Certain framebuffer sizes fail on iOS devices (GL_FRAMEBUFFER_UNSUPPORTED)
I ran into a problem yesterday when trying to create a framebuffer of size 256x8 - on iOS devices (tested on iPad 3, iPhone 4 & iPad Mini) certain sizes will fail with GL_FRAMEBUFFER_UNSUPPORTED. ...
0
votes
1answer
114 views
unity disable retina for iphone 4
We developing an app for iOS with Unity (Basic version).
On iPhone 4 we have low fps.
We want to use non-retina 320*480 screen size on iPhone 4 (and render buffer 320*480).
We think that will increase ...
0
votes
0answers
56 views
Why is self setFrame, setBounds in createFrameBuffer called like this
To get my OpenGLES game resizing the view correctly on the simulator for iphone 3.5 and 4" devices I had to comment out the following checks in createFrameBuffer (from the OpenGLES Apple sample code).
...
1
vote
1answer
69 views
iOS: After changing renderbuffer glCheckFramebufferStatus returns GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES
I make painting application.
I'd like to change sustain to add redo and undo function.
But I can't make complete framebuffer after render something.
CAEAGLLayer* pGLLayer = ( CAEAGLLayer* ...
0
votes
0answers
38 views
Rewrite GLCameraRipple with Image Overlay
I want to rewrite the GLCameraRipple code with two additional features.
I would like to add an overlay image onto the live video that will ripple with the rest of the video as well. Kind of like a ...
2
votes
2answers
82 views
creating a flashy intro to an iPhone app
How would I go about creating the introduction that AirBnB uses in their app? The functionality that they've created can be found here http://www.youtube.com/watch?v=E_RlPZYIpIY
Are they using ...
2
votes
0answers
73 views
iPhone GLSL dynamic branching issue
I am trying to pass an array of vec3 as uniform and then iterate through them on each pixel. The size of array varies on situations so I can't make the loop with constant number of iterations. ...
3
votes
1answer
88 views
Not able to get the exact portion cropped image by using OpenGL in ipad
In my Ipad app i'm using OpenGL framework to crop the image.I'm not much familier with OpenGL.Here in my app I need to crop some portion of image and display it on an image view. For cropping effect I ...
0
votes
2answers
69 views
UIProgressView Not DIsplaying
I have a UIProgressView I want to run on my GLKViewController while the rest of the code is being loaded by iOS. I have placed the UIProgressView into my 'viewDidLoad' method. The UIProgressView does ...
1
vote
2answers
149 views
What is the best way to draw a large number of lines using openGL and cocos2D?
I have a series of 2d vertices that represent the lines used to draw a grid. There are about 900 line segments to draw (the grid uses spring physics to distort, which is why I don't just draw a single ...
3
votes
0answers
72 views
split the image into a mesh of small quadrangles in OpenGLES
how to split the image into a mesh of small quadrangles in OpenGLES.
I need to split image in small parts and after that stretch only one part of the image, not a whole image.
Is it possible using ...
0
votes
0answers
36 views
OpenGL - Wavefront object artefacts
I'm loading a wavefront .obj object in OpenGL, but I am having some artefacts. This is due to a fact, that I have two edge lines in the same place.
In provided screenshot is visible object's one side ...
