File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ allprojects {
4343
4444// module build.gradle
4545dependencies {
46- implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3 .0'
46+ implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4 .0'
4747}
4848```
4949
@@ -130,6 +130,7 @@ It has sync and async modes.
130130* 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.
131131
132132## Latest Update
133+ * Add GaussianBlurFilter & Fix FilterGroup ViewPort Issue (1.5.4, Thanks to [ @iffly ] ( https://github.com/feiyin0719 ) )
133134* Add record screen demo
134135* Add clearTextureCache to help clear cache faster than WeakHashMap. (1.5.2)
135136* Can operate bitmap when using AndroidCanvasHelper (1.5.2)
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ allprojects {
4848
4949// module build.gradle
5050dependencies {
51- implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.3 .0'
51+ implementation 'com.github.ChillingVan:android-openGL-canvas:v1.5.4 .0'
5252}
5353```
5454
@@ -140,6 +140,7 @@ public class MyGLView extends GLView {
140140
141141
142142## 最近更新
143+ * 添加高斯模糊 & 修复FilterGroup ViewPort 宽高问题(1.5.4 感谢[ @iffly ] ( https://github.com/feiyin0719 ) ))
143144* 添加录屏demo
144145* 添加clearTextureCache,比弱引用更快释放内存 (1.5.2)
145146* AndroidCanvasHelper能直接操作Canvas里的bitmap了 (1.5.2)
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ apply plugin: 'com.android.library'
2222apply plugin : ' maven-publish'
2323def NAMESPACE = " com.github.ChillingVan"
2424group = NAMESPACE
25- def VERSION_NAME = " 1.5.3 .0"
25+ def VERSION_NAME = " 1.5.4 .0"
2626
2727android {
2828 namespace = NAMESPACE
2929 compileSdkVersion 32
3030 defaultConfig {
3131 minSdkVersion 14
3232 targetSdkVersion 32
33- versionCode 105030
33+ versionCode 105040
3434 versionName VERSION_NAME
3535 testInstrumentationRunner ' androidx.test.runner.AndroidJUnitRunner'
3636 }
You can’t perform that action at this time.
0 commit comments