diff options
author | Eric Anholt <[email protected]> | 2010-05-21 09:32:38 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-05-21 12:20:39 -0700 |
commit | 68fc4b415e322f6744299e39864fbc377c6eff74 (patch) | |
tree | 4bafffd8b0105174f3c5c0ae327a005be9145990 /progs/vpglsl/off2f.glsl | |
parent | e4f4489e3fc0b36d72821b55794fb843b2b7fa5f (diff) |
Remove demos that have moved to git+ssh://git.freedesktop.org/git/mesa/demos.
The remaining programs are ones I've had difficulty finding a build
environment for to make the build system or are unit tests that should
probably live next to their code instead. Hopefully people can bring
over the build for remaining pieces they care about.
Diffstat (limited to 'progs/vpglsl/off2f.glsl')
-rw-r--r-- | progs/vpglsl/off2f.glsl | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/progs/vpglsl/off2f.glsl b/progs/vpglsl/off2f.glsl deleted file mode 100644 index e06cb42a0ed..00000000000 --- a/progs/vpglsl/off2f.glsl +++ /dev/null @@ -1,18 +0,0 @@ -const int KernelSize = 8; -uniform vec2 Offset2f[KernelSize]; -uniform vec4 KernelValue4f[KernelSize]; - -void main(void) -{ - int i; - vec4 sum = vec4(0.0); - vec4 tmp = gl_Color; - vec2 rg, ba; - gl_Position = gl_Vertex; - - rg = Offset2f[4]; - ba = Offset2f[5]; - - - gl_FrontColor = KernelValue4f[0] * vec4(rg, ba); -} |