Skip to content

Commit

Permalink
Add documentation and bump the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Jawnnypoo committed Sep 10, 2015
1 parent a0b9075 commit 9ee212b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nativestackblur/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 8
targetSdkVersion 23
versionCode 1
versionName "1.0"
versionCode 101
versionName "1.0.1"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
import com.enrique.stackblur.NativeBlurProcess;

/**
* Processes bitmaps using native StackBlur library
* Created by John on 9/10/15.
*/
public class NativeStackBlur {

/**
* Process the image using a native library
* Process the bitmap natively
* @param bitmap the bitmap to apply blur to
* @param radius the radius of the blur
* @return a blurred bitmap
*/
public static Bitmap process(Bitmap bitmap, int radius) {
NativeBlurProcess blur = new NativeBlurProcess();
Expand Down

0 comments on commit 9ee212b

Please sign in to comment.