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

learn more… | top users | synonyms

0
votes
0answers
8 views

How to load NPOT texture on iOS when width is none power of two?

I checked this post: Non power of two textures in iOS. I used GL_CLAMP_TO_EDGE for wraps without mipmap feature by opengl-es 2.0. Now it's only working when the width is power of two for example ...
0
votes
2answers
33 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
26 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); ...
0
votes
1answer
73 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
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
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
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
2answers
61 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
21 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
37 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
35 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
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
1answer
31 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
150 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
47 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
156 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 ...
0
votes
2answers
151 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
80 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
39 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
60 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
182 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
55 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
42 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
45 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
27 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
83 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 ...
0
votes
1answer
71 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
41 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
27 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
57 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
101 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
68 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
69 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
64 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
152 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
255 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
281 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
49 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
vote
1answer
297 views

opengles display human face in iphone

I need to make a human 2D face to 3D face. I used this link to load an ".obj" file and map the textures. This example is only for cube and pyramid. I loaded a human face ".obj" file. This loads the ...
0
votes
0answers
67 views

How can I encapsulate draggable sprites in an iOS GLKit game

I'm making an iOS game using GLKit in which the user will drag sprites around on the screen. I have a working implementation with all the touching / dragging logic in the GLKViewController. I would ...
3
votes
3answers
144 views

GLKit's -drawRect: is not called during screen rotation

I have GLKit-based app with some simple object displayed. All works fine, except screen rotation, during which GLKView is not updated (-drawRect: is not called). So during rotation projection matrix ...
1
vote
0answers
101 views

Is there a way to use UIView / CALayer in OpenGL or Apple's GLKit without rendering to UIImage/CGImageRef?

I know how to render a UIView/CALayer to a CGContextRef and a UIImage/CGImageRef.. That is old news. But is there a way to omit the rendering to Image/CGContextRef and use the UIView/CALayer directly ...
0
votes
0answers
96 views

GLKTextureLoader textureWithCGImage: loads the first texture then fails with GL error 1282

I generate a transparent texture like this: UIImage* image = [UIImage blankImageWithSize:(CGSize){256, 256}]; NSError* error; self.backgroundTexture = [GLKTextureLoader ...
0
votes
1answer
135 views

IPhone: GLKTextureInfo not working using Grand Central Dispatch?

I am developing an IPhone OpengGL app using the GLKit, and using the following code to create textures: NSRange dotRange = [textureFileName rangeOfString:@"." options:NSCaseInsensitiveSearch]; ...
0
votes
1answer
86 views

Looking for an example of controls (buttons, sliders, etc…) using GLKit [closed]

I need to add simple controls (buttons, sliders, etc...) to a GLKView, which recognize gestures, and send an action to a GLKViewController. These controls will be used to add animated, partially ...
0
votes
0answers
157 views

How to get a cube having different textured image on each face of cube in glkit?

I am developing a game in which i have to shake a dice to get number .I am using glkit to make a cube and texturing that cube by GLKBaseEffect. Well ! i want a cube having diffrent textured images on ...
0
votes
1answer
193 views

Render to texture using a frame buffer and GLKit's GLKBaseEffect

I'm trying to draw to a texture (and then use that texture on an object) with GLKit but I'm receiving GL ERROR: 0x0502 which I think it means invalid value passed to a function. The thing is, the ...
0
votes
1answer
119 views

Record GLKView to mov file with CVOpenGLESTextureCache

i'm new to opengl and i'm trying to record the GLKView with no luck so far. here is my code: EAGLContext * _context = self.glkview.context; #if COREVIDEO_USE_EAGLCONTEXT_CLASS_IN_API ...
2
votes
2answers
89 views

OpenGL - why is GL_ELEMENT_ARRAY_BUFFER for indices?

I'm currently new to the OpenGL ES 2.0 realm and would like to understand as much as I can regarding binding, buffers, shaders, etc. As of now, I'm just trying to understand the differences between ...
1
vote
1answer
64 views

Is it safe to use GLKViewController in a portion of the screen only?

I remember that UIViewControllers were only for fullscreen. Is GLKViewController safe to use in a portion of the screen?

1 2 3 4 5