Blur-LIB-Android icon indicating copy to clipboard operation
Blur-LIB-Android copied to clipboard

Called getRowBytes() on a recycle()'d bitmap

Open marchellodev opened this issue 5 years ago • 0 comments

W/Bitmap (10400): Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getHeight() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getHeight() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getHeight() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getHeight() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getHeight() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getRowBytes() on a recycle()'d bitmap! This is undefined behavior! W/Bitmap (10400): Called getHeight() on a recycle()'d bitmap! This is undefined behavior! W/Choreographer(10400): Frame time is 0.064618 ms in the future! Check that graphics HAL is generating vsync timestamps using the correct timebase.

`

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:blurkit="http://schemas.android.com/tools" android:id="@+id/arcam_layout" android:layout_width="match_parent" android:layout_height="match_parent">

<fragment
    android:id="@+id/ar_cam_fragment"
    android:name="ua.int20h.sodd_warriors.ar_task.ar.ArFragmentSupport"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <no.danielzeller.blurbehindlib.BlurBehindLayout
        android:id="@+id/blurBehindLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"

        app:blurRadius="100.0"
        app:updateMode="onScroll"
        app:useTextureView="false"
        app:blurPaddingVertical="50"
        app:blurTextureScale="0.5"
        app:useChildAlphaAsMask="false">


        <fragment
            android:id="@+id/fl_fragment"
            android:name="ua.int20h.sodd_warriors.ar_task.ar.ArFragmentSupport"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
        <!-- Add Children -->
    </no.danielzeller.blurbehindlib.BlurBehindLayout>

</RelativeLayout>

`

marchellodev avatar Feb 20 '21 20:02 marchellodev