Commit 2ca742cd authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add missing includes."

parents 685d1d8a c2122c6e
......@@ -14,8 +14,10 @@
* limitations under the License.
*/
#include "filters.h"
#include <stdio.h>
#include <stdlib.h>
#include "filters.h"
static __inline__ void flipVertical(char * source, int srcWidth, int srcHeight, char * destination, int dstWidth, int dstHeight){
//Vertical
......
......@@ -15,6 +15,8 @@
*/
#include <math.h>
#include <stdlib.h>
#include "filters.h"
void JNIFUNCF(ImageFilterHighlights, nativeApplyFilter, jobject bitmap,
......
......@@ -15,6 +15,8 @@
*/
#include <math.h>
#include <stdlib.h>
#include "filters.h"
int value(int r, int g, int b) {
......
......@@ -15,6 +15,8 @@
*/
#include <math.h>
#include <stdlib.h>
#include "filters.h"
void JNIFUNCF(ImageFilterShadows, nativeApplyFilter, jobject bitmap, jint width, jint height, float scale){
......
......@@ -14,6 +14,8 @@
* limitations under the License.
*/
#include <stdlib.h>
#include "filters.h"
void estmateWhite(unsigned char *src, int len, int *wr, int *wb, int *wg){
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment