15 lines
341 B
Java
15 lines
341 B
Java
|
package com.kofax.kmc.ken.engines.gpu;
|
||
|
|
||
|
import android.opengl.GLSurfaceView;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public interface IGPUImageRenderer extends GLSurfaceView.Renderer {
|
||
|
void destroy();
|
||
|
|
||
|
void onPreviewFrame(byte[] bArr, int i, int i2);
|
||
|
|
||
|
void setRotation(Rotation rotation);
|
||
|
|
||
|
void setScaleType(ScaleType scaleType);
|
||
|
}
|