GLKit is a UIKit framework which helps in the development of OpenGL ES applications on iOS.

learn more… | top users | synonyms

0
votes
1answer
17 views

GLKit Depth Testing Not Working

I'm using Ray Wenderlich's tutorials to make a simple OpenGlES 2 app using GLKit, and I've come across some problems. I changed the sample code to display two cubes by adding vertex and indices data ...
0
votes
0answers
10 views

Quaternion rotate about axis after touches ended

In OpenGL ES 2.0 using Apple's GLKit, I'd like to have my object rotate after touches end using Quaternion SLERP. I thought I could do this using the last quaternion known after touches ended and ...
1
vote
1answer
25 views

GLKit and transparency

I'm trying to draw something like this using OpenGL ES and GLKit But I'm getting this Although the texture si transparent, upper layers of model replace the texture under instead of blending. Is ...
0
votes
0answers
9 views

cocoa Touch on top of GLKit [duplicate]

I currently have an openGL es ios application made using GLKit. It is a single view of an imported model that the user can transform and rotate. I would like to add buttons to this app however I am ...
0
votes
1answer
20 views

My GLKMathUnproject always returns the geometry that's center-screen

I'm trying to use GLKMathUnproject() to translate screen coordinates to geometry, but my routine always returns whatever geometry is in the center of the screen. My unproject code looks like this: + ...
0
votes
2answers
54 views

iOS OpenGL ES 2.0 Quaternion Rotation Slerp to XYZ Position

I am following the quaternion tutorial: http://www.raywenderlich.com/12667/how-to-rotate-a-3d-object-using-touches-with-opengl and am trying to rotate a globe to some XYZ location. I have an initial ...
0
votes
0answers
15 views

Which GLKit Matrix should I use to make a 2D Shape?

I cannot figure out which GLKMatix I should use to form a 2D Shape. GLKMatrix2 doesn't have enough floats. GLKMatrix3 doesn't seem formated correctly for a 2D shape and GLKMatrix4 has way too many. ...
0
votes
1answer
26 views

How to set the opacity of an image using OpenGL ES 2.0 and GLKit?

I am new to iOS and OpenGL programming, and I am currently writing a simple program using OpenGL ES 2.0 and GLKit for practicing. Right now I can successfully load a PNG file and display it on the ...
0
votes
1answer
19 views

OpenGL ES iPhone drawing only works when profiling

I have a very simple triangle class that uses NSMutableData to store vertex information. The triangle class models somewhat after the class found in this tutorial. The triangle only draws itself when ...
-1
votes
0answers
66 views

IOS - GLKit and drawing text

My project is an IOS opengl 2.0 project using GLKit. I'd like draw texts using the tutorial below: ...
0
votes
0answers
15 views

Updating vertices according to a modelview matrix

I'm working with several meshes in my OpenGL scene. After applying some transformations to them using modelviewMatrix, I need to modify meshes themselves so that the combination of their new object ...
0
votes
1answer
59 views

Black texture with OpenGL when image is too big

In my app (Tres) I'm loading an image from the image picker and putting it on a texture. It all worked fine in all my tests, but now that it's online people with iPads with retina display are ...
0
votes
1answer
44 views

glBlendFunc transparency in OpenGL with GLKit

I'm using GLKit for an iPad app. With this code I setup blending: glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); It works fine, but when I try to get a screenshot the blend ...
0
votes
2answers
52 views

iOS Using GLKMathUnproject to find screen point in world space

How to use GLKMathUnproject to determine location in world space? The user needs to select one of several objects in world space. In doc it says GLKVector3 GLKMathUnproject ( GLKVector3 window, ...
0
votes
1answer
28 views

Computing intersection in ObjectiveC

The real time collision detection book has the following equation. // Compute the t value for the directed line ab intersecting the plane Vector ab = b - a; t = (p.d - Dot(p.n, a)) / Dot(p.n, ab); ...
1
vote
1answer
186 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
91 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
85 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
26 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
2answers
98 views

Xcode GLKit printing Text on GLKView without using UIImages

I have an app, its a small game using opengles with GLKit. No im wondering how it works when i want to draw text on my screen (if it is possible). How can i do it? i draw all of my game objects ...
1
vote
0answers
25 views

Memory leak when changing GLKBaseEffect

I am trying to render two objects with GLKit. Initially I was trying to do this: [Cube drawViewController:self.effect CameraMatrix:&lookatmatrix]; //turn off lighting for floor ...
0
votes
1answer
53 views

Why GLKit scaling is causing color/lighting to darken?

Im seeing a strange behavior that i cant seem to grasp. For some reason when I apply a scale (on the z axis), my texture mapped polygon mesh becomes darkened, as if lighting is suddenly disabled or ...
1
vote
0answers
59 views

How can I take a programmatic screenshot of an Open GL ES 2.0 scene using GLKit (in iOS 6)?

I've found numerous posts regarding this, but I haven't been able to work out a solution, largely due to the fact that I don't have a very thorough understanding of OpenGL or GLKit. I added the ...
0
votes
1answer
29 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
1answer
39 views

Why is this call to GLKTextureLoader crashing?

This function is in my GLKViewController, called after a EAGLContext has been created and setCurrent and before the view has loaded: -(GLint)prepareTextureWithImage:(UIImage *)image andName:(NSString ...
1
vote
2answers
253 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
63 views

How can GLKit draw triangles using both CW or CCW notation?

I have a simple textured quad (composed of 2 triangles) that im rendering in my iPhone app using GLKit. Now for some reason I am not seeing any difference when defining my vertices with CW notation ...
4
votes
1answer
209 views

iOS OpenGL ES 2.0 Quaternions Rotation with Momentum after Swipe

I am learning OpenGL ES 2.0 for iOS and with the help of several tutuorials can rotate and zoom a simple sphere object using quaternions. I'd like the globe to continue rotating with diminishing speed ...
1
vote
2answers
239 views

OpenGL ES 2.0 Pinch and Zoom

In OpenGL ES 1.1 on iOS I used to implement pinch and zoom by setting the Field Of View using the following: // Handles Touches Events - (IBAction)handlePinchGesture:(UIGestureRecognizer *)sender { ...
0
votes
0answers
96 views

iOS OpenGL ES 2.0 GLKit how to keep aspect ratio with device orientation

Info: iOS SDK 5.1, iPad, OpenGL ES 2.0, GLKit I have written an OpenGL application and i need to handle device rotation changes. When in portrait mode, everything is ok. But when i rotate a device ...
0
votes
1answer
48 views

Copying struct Array into another struct array (GLKVector)

I try to copy the content of vertexDataTextured ArmandDeBrignac [] array into vertexDataTextured MeshVertexData[] array. But it doesn't work.... I think the problem is in the struct method, there are ...
1
vote
0answers
70 views

Applying motion to a 3d Cube - GLKit

I am coding a 3d cube that can be rotated on touch using GLKit. How can a 3d Cube be manipulated to rotate in using the touch direction and velocity? I would like to apply the direction and velocity ...
0
votes
2answers
232 views

OpenGL draw multiple isometric cubes

I'm trying to draw multiple cubes at an isometric camera angle. Here's the code that draws one. (OpenGL ES 2.0 with GLKit on iOS). float startZ = -4.0f; // position GLKMatrix4 modelViewMatrix = ...
1
vote
1answer
73 views

glDrawElements doesn't show anything

I'm trying to learn OpenGL on iOS. I'm following this tutorial. http://www.raywenderlich.com/5235/beginning-opengl-es-2-0-with-glkit-part-2 I'm sure I followed the steps carefully, but when I get ...
0
votes
1answer
48 views

sizeof() returns wrong size for struct which contains GLKVector3, GLKVector4 variable

I don't understand it's behavior. I think it's wrong. Struct which contains GLKVectors causes the problem. Here's a simple codes. Do you think it's an appropriate result? // Test.h #import ...
0
votes
0answers
70 views

Lines inside a model are visible and artifacts in GLKit / OpenGL ES 2.0

I'm new in GLKit/OpenGL ES and have a problem with displaying lines inside an object. The lines shouldn't be visible. http://imageshack.us/a/img17/4528/97138189.png There is also an artifact from ...
0
votes
1answer
37 views

Xcode set viewcontroller identity iOS OpenGL

I have a GLKit View controller which I would like to call programmatically, (change its scene) but when I go to the attributes pane, I am unable to locate the Identity property. I have attached a ...
0
votes
1answer
100 views

iPhone - GLKit Draw Method too slow on iPhone device

Solution: I set up all the textures once before, rather than every frame, and I did the same for the GLKBaseEffect and that fixed it! :D Ok I seriously need help with this problem as it is causing ...
1
vote
1answer
92 views

How can I load a 3d model to an IOS app, and scale/transform/rotate it to place on an image?

I should load a 3d model (let's say a fridge) and scale or rotate it to locate on a kitchen photo (just for an example). I have seen several SDKs but all was for 3d games. What I need is to put and ...
0
votes
0answers
47 views

Xcode Spin Image into Touch-Direction

I have a small iOS Application using OpenGLES 2.0 and GLKit. In the Center of my Screen, theres an Image (An awesome Spaceship). I want the Front of my Spaceship to show into that direction, where ...
0
votes
1answer
29 views

GLKQuaternion's not accessing w variable properly

I'm trying to figure out an odd issue with GLKQuaternions. When attempting to print out the information for the Quaternions, the value for w = 0 every time. Although, in the debugger area, it clearly ...
0
votes
2answers
73 views

How to draw inside a view in a UIScrollView or UIViewVontroller?

I want to implement a signature feature in my tabbar application. I want to add a subView to a UIScrollView or UIViewController (which ever is the more appropriate and easier). Which control should I ...
0
votes
2answers
118 views

Why isn't this texture repeating in iOS OpenGL ES 2.0?

I have a class which renders a textured 2D shape onto the screen in iOS. If I use texture coordinates less than 1.0, the texture scales appropriately to match the coordinates. However, if I use ...
0
votes
1answer
79 views

Add some views before displaying GLkit View - Navigate to GLkit View from a UIview

I am making a basic application in opengles, and I started with "raywenderlich" Glkit tutorial. This displays a cube in the starting screen of the app. And he mentioned the below lines in his tutorial ...
0
votes
0answers
71 views

Rotate an image and get back to its original position - opengles glkit

I need to rotate an image in opengles GLkit and get it back to its original position in GLkit. rotation += 5; _modelViewMatrix = GLKMatrix4Rotate( _modelViewMatrix, GLKMathDegreesToRadians(5), 1, 0, ...
0
votes
1answer
70 views

Load a two texture for a single image at a regular interval of time - GLkit openglES

I used the below code to load the texture on a object. - (void)ldText:(UIImage *)Image { glGenTextures(1, &texture); glBindTexture(GL_TEXTURE_2D, texture); ...
1
vote
1answer
208 views

add GLKViewController to subview - GLKView context causes crash

I have a pretty simple set up in mind, having a mainViewController that has a GLKViewController on top of it. The idea is having my GLKViewController in a box, that take sup 1/3 of the screen, on the ...
5
votes
3answers
311 views

Texture mapping in GLKit is not working only in devices

I used the code in this link to map textures of human faces. This code uses GLKIT to render the images. Code works fine in simulator but the same code if I run in device its not working. The below are ...
2
votes
2answers
298 views

Issue in Translating C++ from Oreilly book to Objective-C (3D Programming for iOS)

I'm currently going through Oreilly's 3D Programming for iOS book and translating everything from C++ to Objective - C for numerous purposes including later optimization and in depth understanding of ...
0
votes
0answers
51 views

GLKits equivalent for CreateFromVectors()

I would like to know what (if there is) is the equivalent of CreateFromVectors() for GLKit. I can't see that idea being left out since it plays such a great feature in 3D graphical programming. I'm ...

1 2 3 4 5 6