Skip to content

Commit

Permalink
v1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillingVan committed Jan 16, 2023
1 parent 39d41cf commit 31271b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ allprojects {
// module build.gradle
dependencies {
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3.0'
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4.0'
}
```

Expand Down Expand Up @@ -130,6 +130,7 @@ It has sync and async modes.
* The CanvasGL doesn't support drawPath or drawText. You can try IAndroidCanvasHelper but this just uses Android canvas to generate a Bitmap. So heed the performance.

## Latest Update
* Add GaussianBlurFilter & Fix FilterGroup ViewPort Issue (1.5.4, Thanks to [@iffly](https://github.com/feiyin0719))
* Add record screen demo
* Add clearTextureCache to help clear cache faster than WeakHashMap. (1.5.2)
* Can operate bitmap when using AndroidCanvasHelper (1.5.2)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ allprojects {
// module build.gradle
dependencies {
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3.0'
implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4.0'
}
```

Expand Down Expand Up @@ -140,6 +140,7 @@ public class MyGLView extends GLView {


## 最近更新
* 添加高斯模糊 & 修复FilterGroup ViewPort 宽高问题(1.5.4 感谢[@iffly](https://github.com/feiyin0719)))
* 添加录屏demo
* 添加clearTextureCache,比弱引用更快释放内存 (1.5.2)
* AndroidCanvasHelper能直接操作Canvas里的bitmap了 (1.5.2)
Expand Down
4 changes: 2 additions & 2 deletions canvasgl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
def NAMESPACE="com.github.ChillingVan"
group = NAMESPACE
def VERSION_NAME="1.5.3.0"
def VERSION_NAME="1.5.4.0"

android {
namespace = NAMESPACE
compileSdkVersion 32
defaultConfig {
minSdkVersion 14
targetSdkVersion 32
versionCode 105030
versionCode 105040
versionName VERSION_NAME
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
Expand Down

0 comments on commit 31271b4

Please sign in to comment.