~ubuntu-branches/ubuntu/trusty/linphone/trusty

« back to all changes in this revision

Viewing changes to mediastreamer2/src/yuv2rgb.vs.h

  • Committer: Package Import Robot
  • Author(s): Luk Claes
  • Date: 2013-09-11 19:08:43 UTC
  • mfrom: (1.1.19) (16.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20130911190843-fkydjxsdvy1fmx24
Tags: 3.6.1-2.1
* Non-maintainer upload.
* Apply Sebastian Ramacher's patch to fix FTBFS (Closes: #720668).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#define YUV2RGB_VERTEX_SHADER "attribute vec4 position;\n" \
2
 
"attribute vec2 uv;\n" \
3
 
"uniform mat4 matrix;\n" \
4
 
"varying vec2 uvVarying;\n" \
5
 
"\n" \
6
 
"void main()\n" \
7
 
"{\n" \
8
 
"    gl_Position = matrix * position;\n" \
9
 
"    uvVarying = uv;\n" \
10
 
"}\n"