~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/gameengine/Rasterizer/RAS_OpenGLFilters/RAS_Erosion2DFilter.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#ifndef __RAS_EROSION2DFILTER_H__
33
33
#define __RAS_EROSION2DFILTER_H__
34
34
 
35
 
const char * ErosionFragmentShader = STRINGIFY(
36
 
            uniform sampler2D bgl_RenderedTexture;
37
 
        uniform vec2 bgl_TextureCoordinateOffset[9];
 
35
static const char *ErosionFragmentShader = STRINGIFY(
 
36
uniform sampler2D bgl_RenderedTexture;
 
37
uniform vec2 bgl_TextureCoordinateOffset[9];
38
38
 
39
39
void main(void)
40
40
{