Choi Sang Rok

Results 3 comments of Choi Sang Rok

``` Fatal Exception: java.lang.IllegalStateException Calling method on destroyed Engine com.google.android.filament.Engine.getNativeObject (Unknown Source:1142) com.google.android.filament.Texture$Builder.build (Unknown Source:812) ``` We also found an error like this. Destroyes that work on Dispose don't seem...

I solved it as follows ```kotlin private fun createTextureFromBitmap(engine: Engine, bitmap: Bitmap): Texture { val texture = Texture.Builder() .width(bitmap.width) .height(bitmap.height) .levels(1) .sampler(Texture.Sampler.SAMPLER_2D) .format(Texture.InternalFormat.SRGB8_A8) .build(engine) val buffer = ByteBuffer.allocateDirect(bitmap.byteCount) bitmap.copyPixelsToBuffer(buffer) buffer.flip()...

ktor랑 Fuel 차이도 혹시 알 수 있을까요?(저번에 말씀해주셨던 것 같은데 기억이 안나서 죄송합니다..)