A shader is a program to perform calculations on geometry or pixel data in computer graphics.
0
votes
0answers
7 views
Is it expensive to do trilinear texture mapping in a shader?
Imagine a big procedural world that worths more than 300k triangles (about 5-10k per 8x8x8m chunk). Since it's procedural, I need to create all the data by code. I've managed to make a good normal ...
0
votes
1answer
21 views
GLSL - Weird syntax error “<”
I'm trying to use a shader but it keeps telling me this error on both fragment and vertex shader:
error(#132) Syntax error: "<" parse error
vertex shader
varying vec4 diffuse;
varying vec4 ...
0
votes
1answer
19 views
How to get the color of a pixel on the screen for Shader (Open GL ES 2,0)
I use this simple Shader for texture mapping in Open GL ES 2.0
I need to add the code for the Overlay Blending Mode.
The Algorithm I understand everything.
But how to obtain the color of a pixel on ...
1
vote
0answers
18 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 ...
1
vote
1answer
43 views
Rendering from VBO with glDrawElements has a weird result
I just started to implement the librocket (an UI lib that generates mesh from HTML) one requirement is the RenderInterface. The lib basically sends your class that inherits from RenderInterface the ...
2
votes
1answer
27 views
Setting Up GLSL Ocean Water Shader Following Nvidia GPU Gems Chapter 1
I am following the Nvidia GPU Gems Chapter 1 regarding water simulation using shaders. I am trying to follow the chapter to create an ocean water shader using glsl in OpenGL es 2.0 (iOS).
I am able ...
0
votes
2answers
39 views
OpenGL - Texture mapping in vertex or fragment shader?
Is there texture of an object/triangles mapped in the fragment shader or the vertex shader?
Whether if it is on the vertex or fragment shader, if you are programming shaders it's something that you ...
0
votes
0answers
12 views
Using Matrix for video display using openGL es 2.0 on ios [duplicate]
I am using shaders openGL ES 2.0 for video rendering on ios devices. Code is working fine with full screen correctly but I want to use matrices in shaders for handling aspect ratio. Could someone tell ...
0
votes
1answer
41 views
GLSL Normal Mapping (Areas With 0.0 Lambert Gets Lit)
when i use the model's normal , the result is fine ( there are dark areas and lit areas , as i would expect from a simple lambert diffuse shader )
but when i use a normal map , the dark areas gets ...
-1
votes
3answers
77 views
OpenGL Shaders - Normals in Gouraud and Phong shading?
I can't seem to understand the OpenGL pipeline process from a vertex to a pixel.
Can anyone tell me how important are vertex normals on these two shading techinques? As far as i know, in gouraud, ...
-1
votes
0answers
15 views
spontaneous pixellation of textures at low fps when using per pixel shading in android
In my live wallpaper I'm using per pixel displacement (opengl es 2.0 shader) using a map to make a realistic waterfalls. it runs smoothly most of the times but when phone is using more app the live ...
0
votes
1answer
34 views
How to cut an object using WebGL shaders?
I would like to cut an object (a box) in WebGL (fragment shaders / vertex shaders) without using Boolean operations (union, difference, etc..).
I want to use shaders to hide some part of the object ...
-1
votes
0answers
13 views
opengles 2.0 shader for bone animation
I already know about the skeletal animation
But I want to know when to implement it in the android
How specific calculation should be distributed on the CPU or GPU
For example
I use opengl es 2.0
...
0
votes
1answer
33 views
using multiple programs with opengl [closed]
I'm working on an OpenGL program in c++ with the freeglut library, and I'm having trouble getting my programs to work correctly.
I create some buffers and vertex arrays and also create two programs, ...
0
votes
0answers
9 views
radiance closure in OSL
I'm a beginner in OSL and got quiet confused about its "radiance closure".
Just diffuse closure as an example. We can directly write
Ci = diffuse(N)
in an osl file to use diffuse closure. And ...
0
votes
1answer
78 views
+50
Optimizing performance of a heavy fragment shader
I need help optimizing the following set of shaders:
Vertex:
precision mediump float;
uniform vec2 rubyTextureSize;
attribute vec4 vPosition;
attribute vec2 a_TexCoordinate;
varying vec2 tc;
...
0
votes
1answer
21 views
Custom WPF ShaderEffect alpha channel has unusual behavior
I've got a fairly straightforward pixel shader—set alpha channel to zero and return.
sampler2D tex : register(s0);
float4 PS(float2 uv : TEXCOORD) : COLOR
{
float4 color = tex2D(tex, uv);
...
0
votes
1answer
40 views
CSS3 Custom Filters applied to a canvas - Working only if strange conditions are met
To answer the question Is there a way to create a 3D cylinder of the canvas element in CSS?, I played around with the new CSS custom filters, trying to apply them to a canvas element.
It worked, but ...
1
vote
0answers
60 views
error creating shader type 35663
i want to learn OpenGl and i follow the tutorial in http://ogldev.atspace.co.uk/
nicely tutorial 1,2 have been passed.
but on the tutorial 3,that is make a triangle i got error. the code is compile ...
0
votes
1answer
45 views
Multiple Shaders-Single Program or If-else conditions via a uniform variable?
I want to ask a simple question about OpenGL ES 2.x (or I think it is valid for most of the recent OpenGL releases).
Which one of the following is faster? :
Attaching/Detaching multiple shaders ...
0
votes
1answer
24 views
how to swap current fragment shader color with neighbors?
I have a shader with a sampler texture. is it possible to swap the color of the current fragment with any of its neighbors? if it so, how?
uniform sampler2D map;
varying vec2 vuv;
void main() {
...
0
votes
0answers
60 views
how to do particles texture mapping with three.js shaderMaterial?
what I'm trying to achieve is having a particle system where each particle have a portion of a given texture. Below is a example of a particles's buffergeometry using a shader material.
so far I can ...
0
votes
1answer
21 views
WebGL: Switch between Shaders
i wrote a tiny function to switch between shaders, but unfortunatelly it doesn't work.
I create the shaders and return them as shader objects.
program = gl.createProgram(vs, fs, "VertexPosition", ...
0
votes
0answers
16 views
Texture coordinates: Two dimensional to one dimensional
I'm building a 3 dimensional texture, however I have no access to actual support for 3 dimensional textures. Thus I need to convert 3 dimensional texture coordinates to 2 dimensional texture ...
0
votes
1answer
30 views
AGAL: Calculating screen space position in fragment shader
Before I define my problem in more detail, I think I should begin by explaining how I've set everything up.
Basically I have a simple plane mesh, defined as such (x, y, z, u, v):
_vertices = ...
1
vote
0answers
18 views
Is it possible to use the Visual Studio 2012 Shader Designer with Silverlight projects?
I'm looking for a nice designer for making shader effects for Silverlight, and I saw that Visual Studio 2012 has a new Shader Designer. However, I am unable to create a Directed Graph Shader item to ...
0
votes
1answer
19 views
DX11 Tessellation LOD with diameter incorrect when Object gets rotated by D3DXMatrixRotationYawPitchRoll
I implemented the LoD with diameter from following withpaper NVidia TerrainTessellation WhitePaper. In Chapter "Hull Shader:Tessellation LOD" Page 7 there is a very good explenantion of the LoD with ...
2
votes
1answer
66 views
Vertex shader for only some vertices
I'm trying to write a vertex shader that only applies to some vertices.
In Unity, text is rendered as a series of disjointed 4-vertex polys.
I'm trying to transform/rotate/scale those polys, but ...
1
vote
0answers
51 views
Unity3D - A shader that will clip a texture on iOS device
I'm working with Unity shaders for the first time and I have a problem with making a shader that will draw only some part of a texture. The code below works on mac standalone build, but not on iOS ...
0
votes
1answer
20 views
Directx11 where initialize constant shader buffer
I not know where initialize shader constant buffer: before Map(), before Unmnap() or is not difference where initialize ?
0
votes
0answers
27 views
THREE.OBJMTLLoader() shader material Issue
How to add shaders to object loaded with THREE.OBJMTLLoader(). Would like to add features like shininess e.t.c
0
votes
1answer
26 views
default uniform (array) values
Rather than explicitly setting uniform data for a GL program, I set 'defaults' in a simple test (fragment) shader with:
uniform vec3 face_rgb[] = vec3[]
(
vec3(0.0, 0.0, 1.0), vec3(0.0, 1.0, ...
1
vote
1answer
53 views
GLSL glass effect plus depth peeling
I'm working on rendering a scene that potentially has multiple intersecting transparent objects. This makes the standard method of sorting and drawing back to front problematic (even sorting triangles ...
0
votes
0answers
12 views
Is there a multitexture 3D fomat?
I'm playing arround with irrlicht.
I have written a cool shader, but the problem is that I can use it for the whole mesh, but a loaded mesh only has the diffuse texture in it.
Now I can add the ...
0
votes
0answers
36 views
Three.js: Could not initialise shader VALIDATE_STATUS: false, gl error [0] when loading example
I have been looking at the examples provided along with the Three.js distribution and I get this error when I try to load the example webgl_materials_bumpmap_skin.html:
Could not initialise shader ...
0
votes
1answer
49 views
Shader program to Vertex + Fragment shader
I am studying a tutorial which uses this shader:
struct VSInput
{
vec3 Position;
vec2 TexCoord;
vec3 Normal;
};
interface VSOutput
{
vec3 WorldPos;
vec2 TexCoord;
vec3 Normal;
};
...
0
votes
1answer
57 views
Why is this GLSL shader so slow?
I am trying to do a raytrace on a grid in a fragment shader. I have written the shader below to do this (vertex shader just draws a screenquad).
#version 150
uniform mat4 mInvProj, mInvRot;
uniform ...
0
votes
1answer
9 views
Why we can determine pixel inside outside using (u^2 - v)?
Need help to understand Loop-Blinn 05,I'm blocked here:
During rasterization, the Graphics Processing Unit (GPU) will calculate
a texture coordinate for each pixel on the interior of the triangle by ...
1
vote
1answer
63 views
comparing methods of creating skybox material in three.js
When it comes to making skyboxes in three.js, I have seen two different schools of thought. Assuming that we have the code
var imagePrefix = "images/mountains-";
var directions = ["xpos", "xneg", ...
2
votes
0answers
51 views
Sharing material in Unity3d
I have 12 materials in total in my game.Then I have various Gameobjects that have many materials attached to it for example Gameobject1 further have 10 Childrens each of which use 2 same Materials.Now ...
0
votes
1answer
28 views
LWJGL OpenGL application limited at ~35 fps
I ported a volume renderer from c++ using glm and glut to LWJGL, java. The volume renderer uses a shader with a 3d texture.
For some reason though the fps sticks at ~35 fps. I tried trimming the ...
0
votes
1answer
56 views
is it worth it to use hlsl shaders for 2D drawing
I was wondering if it is worth it to use shaders to draw a 2D texture in xna. I am asking because with openGL it is much faster if you use GLSL.
0
votes
1answer
64 views
How to add shader to THREE.Object3D loaded from OBJMTLLoader
I have a model loaded using THREE.OBJMTLLoader.
var loader = new THREE.OBJMTLLoader();
loader.addEventListener('load', function(event) {
var mesh = event.content;
scene.add(mesh);
}
...
0
votes
1answer
35 views
Force a sprite object to always be in front of skydome object in THREE.js
I currently have a custom shader draw a gradient on a skydome and would like to have a sun/moon in front of the skydome (from users perspective). The easiest way to do this is to have sprites for the ...
0
votes
0answers
104 views
OpenGL ES 2.0: What's the correct way to dynamically set texture coordinates in a GLSL vertex shader?
I'm trying to do the following in a vertex shader:
...
attribute vec2 tCoordIn;
uniform vec2 tCoordScale;
uniform vec2 tCoordOffset;
varying vec2 tCoordOut;
void main() {
...
tCoordOut = ...
0
votes
0answers
69 views
Particle System error
Im working in Particle System Class from this tutorial Particles - Anton's OpenGL 4 Wiki - Dr Anton Gerdelan
Code:
//Pixel Shader
// shader to update a particle system based on a simple ...
0
votes
2answers
34 views
Mesh on the other side of light source looks strange
i'm programming in WebGL (using OpenGL shaders) simple model loader. I've implemented phong shading in fragment shader. However when i load larger objects than simple monkey/cube and turn camera out ...
0
votes
1answer
97 views
OpenGL ES 2.0: glUseProgram vs glUniform performance
Which is faster, a single call to glUseProgram, or sending e.g. 6 or so floats via glUniform (batched or separately), and by approximately how much?
0
votes
0answers
82 views
Gaussian Blur with convolution matrix on shader
I am trying to implement a gaussian blur with convolution matrix on my shader.
This is the code i have:
float4 ppPS(float2 uv : TEXCOORD0, uniform sampler2D t1) : COLOR {
//kernel matrix
...
0
votes
0answers
64 views
Cube Shader - Ambient Light LWJGL GLSL
I want to make a simple 3D program. I wanted to start with some simple cubes but I don't know how to make shaders so that i can actually see what's on the screen, for a cube for example:
...


