0
votes
0answers
47 views

Draw many vertical lines in OpenGL ES

i have a little problem with my app and opengl es. I want to draw many (so 200) vertical lines with an stroke of 2 pixels and a distance of 5px. My first problem is to draw a line in OpenGL ES, my ...
0
votes
3answers
124 views

OpenGL ES 1.1 iOS not sizing properly on retina versus non retina

So, I'm having quite a bizarre issue and I'm not sure why. When displaying the following opengl code on a retina screen, I receive the following image: while the image I get on a non retina is the ...
2
votes
2answers
96 views

Capture iPhoneOSGameView as an Image

I am writing a signaturecontroller where the user would write his signature and then I take the signature as an image and save post it back to the server. I quickly found this excellent sample: ...
0
votes
1answer
465 views

Android (AndEngine): Drawing with touch using particles

In my app I'm implementing a draw feature involving particles... basically it needs to work pretty much like Art of Glow (this app here: http://www.youtube.com/watch?v=ZIZpw1VslIk). What I do is ...
1
vote
1answer
709 views

How to draw smooth lines with thickness in OpenGL [ES 2]

I'm looking for a way to draw lines with thickness and smoothness with OpenGL ES2 without using the build it glLineWidth function which has a lot of limitations. I think this can be done using ...
0
votes
3answers
390 views

drawing a square in open gles

ı try to draw a square.. but when ı run the code, ı see a tringle , not a square... :)) what is the problem here??? public class MyGL20Renderer implements GLSurfaceView.Renderer { private ...
0
votes
1answer
179 views

Basic Drawing of Pixels From Unsigned Short * Using OpenGLES on iOS

For my non-app store app, I've been using the private framework Core Surface to draw directly to the screen of the iPhone. However, this can be rather slow on older devices because it heavily uses the ...
0
votes
1answer
293 views

Drawing simple shapes or using sprites with OpenGL

I want to create a simple shape, let's say, a circle, it might have transparency, colors, etc. but it's still a simple circle. In every tutorial I see, people use sprites. I am not sure what should I ...
2
votes
2answers
181 views

How should I sort object? By shaders or by meshes?

To minimize count of state changes, I should sort drawing order of meshes. Anyway If I have multiple meshes using multiple shaders, I need to choose sorting by one of vertex attribute bindings or ...
0
votes
0answers
106 views

Touch draw on an background image and save it

I have been able to write code for doing touch draw on a UIView, and added the support for undo, redo, and erase. Now, I am wondering how to the same with an UIImageView (that is, enable touch draw on ...
0
votes
1answer
164 views

iPhone - Custom dynamic drawing using touch like in “Draw something” game OpenGL or Core Graphics?

I am trying to do dynamic drawing that draws a particle everywhere the finger is moving along the screen, exactly like in the game "Draw Something". My intention is not to make a game, but I need ...
1
vote
2answers
475 views

smooth drawing in iphone

I want to draw line in my drawing application. I want to draw line as pre the below image show. Here you can see that on top and bottom side the line width more than the middle line. As per the ...
3
votes
1answer
1k views

Smooth textured line with OpenGL ES 2.0 shaders

We have an iOS drawing app. Currently, the drawing is implemented with OpenGL ES 1.1. We use some algorithms to smooth the lines such as Bezier curves. So, when touch events occur, we get some set of ...
1
vote
1answer
621 views

Android OpenGL es “glDrawTexfOES” draws upside down

I'm using OpenGL for Android to draw my 2D images. Whenever I draw something using the code: gl.glViewport(aspectRatioOffset, 0, screenWidth, screenHeight); ...
1
vote
1answer
84 views

GL drawing view clears drawings on rotation

I am making a simple drawing app - I have modified the apple GLPaint example somewhat. The problem is when the user rotates the device, the drawings are cleared. is there a way around this? I'm also ...
0
votes
1answer
207 views

iOS fullscreen animating with opengl es

Sorry for my poor English. I created a iPad full-screen size 1024*768*4 bytes bitmap buffer in memory as off-screen buffer, and 2 threads, one of them update the buffer and call performSelector ...
0
votes
2answers
239 views

Need help for GLPaint adding a different twist to it

Can anyone point me to how I might modify the GLPaint program to put a tool like a pencil image on the screen and as I drag the image it actually draws the line?
0
votes
1answer
401 views

Android OPENGL2 not drawing texture to quad

I'm trying to get some textures rendered on quads, but the screen turns out empty. (Open GL 2.0) I formerly used a static color shader on the quads, and the quads did appear on screen, so the ...
0
votes
1answer
853 views

Android HelloOpenGLES20 example doesn't work

I've been trying to do the android dev-guide on OPENGLES20, but when I run the code, I get only the background color drawn, and not the triangle (I'm done until the stretched triangle photo). How can ...
0
votes
1answer
607 views

OPEN GL Android - How to convert a Bitmap object to a drawable texture

I'm trying to implement a Grid of scrollable images in OPEN GL 2.0. I already have the view implemented using Canvas Drawing, but for performance reasons I decided to transition to OGL. In my ...
1
vote
0answers
176 views

Blending texture to draw translucent line

I am trying to develop an android drawing app.In this app I am using texture to draw. I want to draw translucent texture one over another to get continuous translucent line but I am only able to get ...
2
votes
2answers
2k views

How to draw anti aliased lines in OpenGL ES 2.0?

I am trying to draw some contours that I have stored as vertex arrays: typedef struct { float* vertices; int nrPoints; }VertexCurve; list<VertexCurve> CurveList; I am using some ...
0
votes
1answer
277 views

Should I use Quartz or Open GL ES for my drawing app? Or both of them combined?

This is my first iPhone/iPad app :S It is a drawing app and I would like that user could save the current work and after that continue drawing on that same image (updating). I already did something ...
1
vote
1answer
1k views

Drawing a continuous, curvy line in OpenGL with arbitrary width

I'm looking to draw a continuous and curvy line in OpenGL with an arbitrary width. I am developing for a touch screen and have already achieved the desired effect by drawing lines between the old X ...
1
vote
1answer
542 views

Example of android fingerpaint in opengl?

I need to implement free form drawing in a paint app. I started with the canvas method (fingerpaint example in android) but the performance is extremely slow. I'm now switching to openGL. If any one ...
0
votes
1answer
343 views

How to stroke and reveal a path slowly?

For a scientific simulation, I need to stroke and reveal a path slowly over time, starting at the first point and traveling through all other points until reaching the last point. Like if you take a ...
0
votes
1answer
369 views

OpenGL constant color

I read in this Apple documentation (under the header "Avoid Storing Constants in Attribute Arrays") it says that if a model's vertices all have the same colour then colour shouldn't be a vertex ...
4
votes
1answer
349 views

Broken line at joins in opengl on iphone

I am using cocos2d to draw custom shapes for a game. I have an array of polygon points that I use to plot the border of a polygon using the below opengl code. glEnable(GL_LINE_SMOOTH); ...
0
votes
1answer
414 views

overlapping partially transparent shapes in openGL

Please check this neat piece of code I found: glEnable(GL_LINE_SMOOTH); glColor4ub(0, 0, 0, 150); mmDrawCircle( ccp(100, 100), 20, 0, 50, NO); glLineWidth(40); ccDrawLine(ccp(100, 100), ccp(100 + ...
6
votes
1answer
622 views

Tips regarding high performance drawing in Android

Background I'm writing a graphing library for an android application (yes yes, I know there are plenty out there but none that offer the customizability we need). I want the graphs to zoomable and ...
0
votes
1answer
996 views

iOS: make pen drawing like Bamboo application

I am making an ipad application, using GLPaint from Apple source code. I have done the drawing but I don't like my pen effect. I would like to do it as the same with Bamboo application (free) on Apple ...
3
votes
1answer
867 views

Android NDK GLES 2.0 Nothing Drawing

I am trying to Draw with GLES 2.0 through the NDK, doing everything except creating the surface in C++, but nothing is drawing on the screen...And I can't figure out why. I have tried/verified many ...
0
votes
2answers
177 views

Resize drawing animation from given CGPoints?

I have an iphone version of an App that draws lines on the screen from CGPoints that are stored in a Core Data. all of the drawings are line based without any fill, so basically it draws a line from ...
3
votes
3answers
337 views

Looking for the smallest possible amount of code needed to use OpenGL ES as simple drawing surface in Windows

I confess, I have only looked through parts of the entire ocean of GL questions here to find this. Please comment if you find a duplicate. I'm looking for a very small tutorial or if possible a ready ...
10
votes
2answers
6k views

Drawing app on iPad using OpenGL

I'm creating a drawing app ( text ) for the iPad using OpenGL. I've already had a look at Apple's example GLPaint, and my app is now based on that code. My app should be just for drawing text, not for ...
0
votes
4answers
7k views

2D Drawing In OpenGL ES 2.0 (iOS)

I'm learning how to use OpenGL ES 2.0 on iOS. Right now I want to just do some basic 2D animation (e.g. move a rectangle around the screen and change its size). I've started out with the project ...
1
vote
2answers
369 views

CGPoints drawn upside down in GLPaint

We are using GLPaint example for a new app. We wish to demonstrate the user the way to draw few objects. We saw apple GLPaint has an example on how to playback data of points to drawings. So we have ...
3
votes
1answer
2k views

How can I draw (as in GLPaint) onto a background image, and with temporary drawings?

I am writing a GLPaint-esque drawing application for the iPad, however I have hit a stumbling block. Specifically, I am trying to implement two things at the moment: 1) A background image that can be ...
1
vote
1answer
1k views

The proper way to save/restore OpenGL ES state

I know that to save/restore matrix state you use standard push/pop operations. I haven't been able to find a decent convention for saving/restoring state such as when using glLineWidth() or ...
0
votes
2answers
231 views

identify the surface of 3d cube

I am developing an iPad application which just drawing a 3d cube. User can rotate it with finger motion and can zoom in/out with pinching it. Right now I am coloring whole cube (every surface) at ...
2
votes
1answer
931 views

Writing a “Brushes” quality drawing app, need book and resource recommendations

I've spent about a week reading all the freely available information on iPhone drawing, animation, and OpenGL. Using the available iOS drawing examples like Apple's GLPaint and Quartz sample apps ...
0
votes
3answers
220 views

iPhone Quartz - Open GL

Does anyone have an idea what do the mind mapping applications use for drawing: Quartz 2D or Open GL? What would be the best way to implement this kind of application? Any advice is welcomed! Thanks! ...
1
vote
2answers
2k views

Draw Pixel using OpenGLEs for Android

How can I draw a pixel(2D view)for Android using OpenGlEs? It is simple when we use for drawing draw(Canvas canvas) { ... } So using it we draw canvas.drawPoint(i, j, paint); But in ...
1
vote
2answers
1k views

OpenGL ES Simple Undo Last Drawing

I am trying to figure out how to implement a simple "undo" of last drawing action on the iPhone screen. I draw by first preparing the frame buffer: [EAGLContext setCurrentContext:context]; ...
0
votes
3answers
481 views

Drawing numbers into a panel?

I was wondering if there was already a component available which the user could use the touchscreen to draw numbers into. If not, I was considering an openGL panel which their input would draw onto, ...
2
votes
1answer
212 views

Is it possible to restore a previous GL framebuffer?

I'm working on an iPhone app that lets the user draw using GL. I used the GLPaint sample code project as a firm foundation, but now I want to add the ability for the user to load one of their previous ...
0
votes
2answers
1k views

Making a draw/paint app

I'd like to include a simple draw feature on my app. A friend told me I can't use canvas because I need to control the frame buffer and not redraw the entire screen every for every frame. He suggested ...
0
votes
1answer
861 views

What's the best way of drawing layered OpenGL ES content?

Anyone know what the best practices are for drawing multiple layers of 2D OpenGL ES content on the iPhone? For example, let's say I want to draw a complex fullscreen background texture, followed by a ...
4
votes
5answers
5k views

Core Animation or OpenGL ES?

I want to do the following: Tap the screen and draw 3 cricles around the the tapped point. Is it better to do this with Core Animation or OpenGL ES? Where do I start?