Tagged Questions
0
votes
2answers
45 views
Getting the color of the back buffer in GLSL
I am trying to extract the color behind my shader fragment. I have searched around and found various examples of people doing this as such:
vec2 position = ( gl_FragCoord.xy / u_resolution.xy );
vec4 ...
1
vote
0answers
33 views
GLSL (iOS) function parameters not working correctly?
texture color passed to function is not working inside a loop?
I am really confused about this, the first code is working, the second is not. does someone has an explanation for this behaviour? By ...
4
votes
1answer
182 views
Opengl shader problems - weird light reflection artifacts
I've been wrestling with this for days. I think I've finally narrowed it down to a problem with the per vertex tangents, but I'm not sure the best way to fix it.
Context is iPhone app, opengl es2 ...
0
votes
2answers
305 views
Drawing Textures Using OpenGL ES2.0 (or how to use GPU for YUV -> RGB)
I'm trying to use OpenGL for the first time under iOS in an attempt to render a stream of YUV images by converting them to RGB. I've looked around and found some examples here and there, and I'm ...
2
votes
1answer
147 views
GPUImage two-pass filter - second frag shader never runs?
It's my impression (and the answer to this question seems to confirm it) that I can subclass from GPUImageTwoPassFilter to effectively run two fragment shaders in succession on an image but keep all ...
2
votes
2answers
184 views
Does the input texture to a fragment shader change as the shader runs?
I'm trying to implement the Atkinson dithering algorithm in a fragment shader in GLSL using our own Brad Larson's GPUImage framework. (This might be one of those things that is impossible but I don't ...
2
votes
2answers
498 views
Floating point textures in OpenGL ES 2.0 on iOS without clamping them to [0, 1]
I need gl_FragColor to "paint" floating point values, which also can be negative (x < 0) and > 1.0. I then want to use the color attachement of the FBO this values where rendered to and use it as a ...
2
votes
1answer
166 views
GL_APPLE_shader_framebuffer_fetch gl_lastFragData
Apple introduced a new shader extension called GL_APPLE_shader_framebuffer_fetch, which allows fully programmable blending. There is also a wwdc video explaining the functionallity. It's the video 513 ...
1
vote
1answer
206 views
Implementation limit of active vertex shader samplers on the iPhone
I'm trying to use a sampler in a vertex shader on the iPhone. The documentation says that this is not supported on the PowerVR SGX. However, it seems that at least someone got it working in the ...
0
votes
0answers
66 views
PlayN How to attach custom shader
My game FPS (iOS platform) is too low while drawing paths using Canvas strokePath(Path path).
I have some experience in writing GLSL shaders and decided to implement similar functionality using ...
0
votes
1answer
257 views
Output of vertex shader 'colorVarying' not read by fragment shader
As is shown below, the error is very strange. I use OpenGLES 2.0 and shader in my iPad program, but it seems something goes wrong with the code or project configuration. The model is drawn with no ...
0
votes
1answer
215 views
Is multiple calls to glDrawElements more efficient than doing the same calculations per-fragment in GLSL?
I'm experimenting with GLSL (in iOS) and I wrote a simple shader that takes a colour value and parameters for two circles (center, radius, and edgeSmoothing). It is drawn using a single quad over the ...
3
votes
3answers
389 views
glDrawArrays allocates memory on every frame
I recently found that glDrawArrays allocating and releasing huge amounts of memory on every frame.
I suspect that it's related to "Shaders compiled outside of initialization" issue reported by openGL ...
4
votes
1answer
476 views
Device/OS inconsistencies in GLSL ES Phong shader results
Apple's Best Practices for OpenGL ES recommend against branching on results calculated in a fragment shader. But Phong shading generally involves skipping the specular term when the light source is on ...
1
vote
1answer
247 views
GLSL: is it possible to create mask of one-colored area which contains central pixel?
I want to create effect like "Magic Wand" in Photoshop for central pixel of screen with GLSL shaders in my iPhone app (capturing image from camera). Now I've made this by getting array of pixels and ...
-1
votes
1answer
221 views
How do I use GLSL shader to access each pixel and get its RGB value? [closed]
How do I use GLSL shader to access each pixel and get its RGB value?
I m working on an Xcode Project on iOS.
When I use a GLSL shader to load an image as a texture,
how do I access each pixel and ...
2
votes
1answer
190 views
OpenGL ES - GLSL returning calculations [closed]
I'm trying to create a face tracker for iPhone using the GPU to perform calculations for performance.
To make the tracking more intelligent, I need to be able to retrieve values from the shader.
...
1
vote
1answer
111 views
2 Shaders using the same vertex data
So im having problems rendering using 2 different shaders. Im currently rendering shapes that represent dice, what i want is if the dice is selected by the user, it draws an outline by drawing the ...
3
votes
2answers
371 views
Why does GLSL's arithmetic functions yield so different results on the iPad than on the simulator?
I'm currently chasing some bugs in my OpenGL ES 2.0 fragment shader code which is running on iOS devices. The code runs fine in the simulator, but on the iPad it has huge problems and some of the ...
0
votes
1answer
245 views
OpenGL-ES: how to draw object twice using different shaders
Im trying to make an app that simulates dice rolls, at the moment everything works fine. Im trying to add a shader for when the user selects a dice, it will put an outline around the selected dice. ...
1
vote
1answer
780 views
How to combine two textures without alpha blending using GLSL
I'm trying to combine two texture using shaders in opengl es 2.0
as you can see on the screen shot, I am trying to create a needle reflection on backward object using dynamic environment mapping.
...
3
votes
1answer
993 views
Optimising GLSL code in fragment shader (iOS 5 + OpenGL ES 2.0)
I have some computations (below) in my fragment shader function which is called a huge number of times. I'd like to know if it is possible to optimize this code. I took a look at the OpenGL.org glsl ...
0
votes
1answer
264 views
Avoiding texture switching (openGL es 2.0)
I'm working on small 2d rendering engine for IOS. I want to render many sprites that are located in different textures. Now that sounds simple... Just render all sprites that belong to same texture ...
1
vote
1answer
378 views
How to pass non interpolated data OpenGL ES (GLSL)
I'm trying to pass simple FLOAT value from vertex to fragment shader. How can I pass it "as is" without interpolation?
On desktop I could use flat varying to disable interpolation, is there something ...
1
vote
1answer
115 views
Is there a way to use more than 64 uniform vectors in a fragment shader? or alternative?
I use GPUImage in my project. and I want to pass an array with 2304 integer to the fragment shader. but OpenGL ES 2.0 on the PowerVR SGX is limit only 64 uniform vectors for fragment shader.
1
vote
1answer
211 views
Save Compiled GLSL Binary with OpenGL ES on iOS
I am working with some complicated shaders that take up to 5 or so seconds to compile on iOS devices. The shaders have been highly optimized to reduce the running time of the app but the more ...
1
vote
1answer
219 views
iOS fragment shaders with multiple outputs
Is it possible to write GLSL ES fragment shaders under iOS that generate multiple RGB outputs and have (for example) one sent to the screen and one sent to a texture?
Under normal GLSL I guess this ...
0
votes
2answers
271 views
Which GLSL ES extensions are available on various iOS devices?
I'm looking for a list of all extensions available on any iOS devices (and which are available on which device). I haven't found the right page in the apple docs despite a lot of searching, but I'm ...
2
votes
1answer
1k views
yv12 to rgb using glsl in iOS ,result image attached
referred to this question
i convert the yv12 frame data to rgb data using glsl shader,the raw image below:
but the result image is not same with the former,attached below:
following is my ...
1
vote
1answer
325 views
How many pixel shader cycles is to heavy for iPad2
Using the PVRUniScoEditor to profile our pixel shaders, I'm finding that our frag shaders are coming in at around 20 cycles for most polys and 6-8 for are particles. This seems to be our butter zone ...
0
votes
1answer
471 views
iOS GLSL Spherical Harmonic Shader. How Do I Raycast Using the iOS GPU
I am beginning an Spherical Harmonics shader project for an iOS app I am writing. I have begun by reading this excellent in-depth paper on the subject (PDF) - http://bit.ly/aQmax3.
The paper ...
5
votes
2answers
3k views
iOS GLSL. Is There A Way To Create An Image Histogram Using a GLSL Shader?
Elsewhere on StackOverflow a question was asked regarding a depthbuffer histogram - Create depth buffer histogram texture with GLSL.
I am writing an iOS image-processing app and am intrigued by this ...
1
vote
1answer
144 views
GLSL: Changing more than two vertex dimensions crashes shader
For testing purposes I am trying to set the position of every vertex to zero. But If I try to change more than two dimensions (and it doesn't matter which), the shader crashes silently. Can anybody ...
1
vote
0answers
74 views
glVertexAttribPointer but for index data? [duplicate]
Possible Duplicate:
How to use different indices for tex coords array and vertex array using glDrawElements
Is there an equivalent for glVertexAttribPointer to assign an additional index ...
1
vote
0answers
801 views
Profiling OpenGL ES app on iOS
I'm looking at a game I'm working on in the "OpenGL ES Driver" template in Instruments. The sampler is showing that I'm spending nearly all my time in a function called gfxODataGetNewSurface with a ...
5
votes
2answers
2k views
Applying part of a texture (sprite sheet / texture map) to a point sprite in iOS OpenGL ES 2.0
It seems this should be easy but I'm having a lot of difficulty using part of a texture with a point sprite. I have googled around extensively and turned up various answers but none of these deal with ...
0
votes
1answer
157 views
GLSL tapered lines
I'm drawing lots of GL_LINES primitives, shading them using vertex and fragment shaders written in GLSL. What I'd like is for the lines to taper off at the ends in alpha value. That is, at the centre ...
1
vote
1answer
348 views
Minimum size of rendered object using GL_LINES in iOS Open GL ES
I have just completed the first version of my iOS app, Corebox, and am now working on some new features.
One of the new features is a "small" tweak to the OpenGL rendering to force some objects to ...
2
votes
0answers
755 views
iOS - pass UIImage to shader as texture
I am trying to pass UIImage to GLSL shader. The fragment shader is:
varying highp vec2 textureCoordinate;
uniform sampler2D inputImageTexture;
uniform sampler2D inputImageTexture2;
void main()
{
...
2
votes
1answer
307 views
How can I colour things in OpenGL ES 2.0 based on their depth?
I'm writing an OpenGL ES 2.0 game (on iOS). How can I create a shader (since I assume this would be simpler to do in a shader) so that geometry further from the origin (on the Z axis) appears darker?
...
0
votes
1answer
660 views
Reflection mapping in GLSL
I'm trying to get reflection mapping with a cube map working in OpenGL ES 2.0. I'm not sure if I'm calculating the reflection direction correctly to pass to a samplerCube in the fragment shader.
To ...
0
votes
1answer
3k views
About converting YUV(YV12) to RGB with GLSL for iOS
I'm trying to convert YUV(YV12) to RGB with GLSL shader.
As below step.
read a raw YUV(YV12) data from image file
filtering Y, Cb and Cr from the raw YUV(YV12) data
mapping texture
send Fragment ...
1
vote
1answer
288 views
How to properly sample around a textureCoordinate in texture2D in glsl
I am wanting to sample 8 pixels around a specific pixel and calculate a bunch of information from this to use in a thresholding routine.
This is in iOS using a glsl vertex and fragment shaders.
Here ...
0
votes
3answers
359 views
Loading GLSL shader without using any Apple APIs
What is a good way to load a GLSL shader using C/C++ without using Objective-C or any Apple APIs?
I am currently using the following method, which is from the iPhone 3D Programming book, but it says ...
2
votes
1answer
1k views
Best way to draw a circle with OpenGL ES 2.0 / cocos2d 2.0?
What is the best way to draw circles with OpenGL ES 2.0?
I am working on an iPad/iPhone project using cocos2d 2.0 (currently beta) which uses OpenGL ES 2.0 and shaders instead of OpenGL ES 1.0.
In ...
1
vote
2answers
316 views
GLSL Shaders compile but don't draw anything on Windows
I'm trying to port some OpenGL rendering code I wrote for iOS to a Windows app. The code runs fine on iOS, but on Windows it doesn't draw anything. I've narrowed the problem down to this bit of code ...
1
vote
1answer
585 views
GLSL: Built-in attributes not accessible for iPhone Apps?
I am getting really desperate here. I working with Xcode, trying to implement some OpenGL stuff on the iPhone. I have to write a Shader for Phong-Lighting. I got as far as declaring my geometry ...
9
votes
2answers
4k views
How to get a “Glow” shader effect in OpenGL ES 2.0?
I'm writing a 3D app for iOS. I'm new to OpenGL ES 2.0, so I'm still getting myself around writing basic shaders.
I really need to implement a "Glow" effect on some of my models, based on the ...
2
votes
1answer
294 views
GLSL ES Clip Vertex To Far Plane
Im toying with shadow volume on my iPhone and everything work at the exception if the shadow volume cap is clip by the far plane.
Since gl_ClipVertex is not available in GLSL ES, how can I clip the ...
1
vote
1answer
346 views
gl_PointCoord unavailable on Mac?
I want to make an shader for point sprites - everthing is working on iOS so far. But not on Mac OS X.
My vertex shader:
attribute vec4 position;
attribute vec4 color;
attribute vec2 texcoord;
...
