Package com.kakao.vectormap.internal
Interface IEngineHandler
-
- All Known Implementing Classes:
EngineHandler
public interface IEngineHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getEngineState()
void
pause()
boolean
render()
void
resize(int width, int height)
void
resume(int width, int height)
long
start(Context context, int width, int height, int depthSize, java.lang.String glRenderer, Surface surface)
void
stop()
void
updateSurface(int width, int height, Surface surface)
-
-
-
Method Detail
-
start
long start(Context context, int width, int height, int depthSize, java.lang.String glRenderer, Surface surface)
-
resume
void resume(int width, int height)
-
render
boolean render()
-
pause
void pause()
-
resize
void resize(int width, int height)
-
updateSurface
void updateSurface(int width, int height, Surface surface)
-
stop
void stop()
-
getEngineState
java.lang.String getEngineState()
-
-