This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| varying highp vec2 textureCoordinate; | |
| uniform sampler2D inputImageTexture; | |
| uniform lowp float hueAdjust; | |
| precision mediump float; | |
| // no need to compute these... | |
| const float sqrt2 = 1.414213562373095; | |
| const float sqrt3 = 1.732050807568877; | |
| const float oneoversqrt2 = 0.707106781186548; | |
| const float oneoversqrt3 = 0.577350269189626; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * AppController.j | |
| * blah | |
| * | |
| * Created by You on March 15, 2011. | |
| * Copyright 2011, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import <Foundation/CPObject.j> | |
| @implementation QuestionListViewController : CPView | |
| { | |
| CPView view; | |
| CPDictionary questions; | |
| CPRect bounds; | |
NewerOlder