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
| if (Build.VERSION.SDK_INT == Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1) { | |
| menu = new MenuWrapper(menu) { | |
| private MenuItem fix(MenuItem item) { | |
| try { | |
| Field f = item.getClass().getDeclaredField("mEmulateProviderVisibilityOverride"); | |
| f.setAccessible(true); |
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
| package com.yumyumlabs.web.filter; | |
| import com.google.appengine.api.labs.modules.ModulesService; | |
| import com.google.appengine.api.labs.modules.ModulesServiceFactory; | |
| import com.google.appengine.api.utils.SystemProperty; | |
| import javax.servlet.*; | |
| import javax.servlet.http.HttpServletRequest; | |
| import javax.servlet.http.HttpServletResponse; | |
| import java.io.ByteArrayOutputStream; |
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
| NSString *const kColorShiftFragmentShaderString = SHADER_STRING | |
| ( | |
| varying highp vec2 textureCoordinate; | |
| uniform sampler2D inputImageTexture; | |
| uniform lowp float redShift; | |
| uniform lowp float greenShift; | |
| uniform lowp float blueShift; |