Lines Matching defs:env
34 void WindowSurface::release(JNIEnv* env) { in release()
55 ThreadedSurface::ThreadedSurface(JNIEnv* env, jobject surface) in ThreadedSurface()
67 void ThreadedSurface::release(JNIEnv* env) { in release()
90 BitmapSurface(JNIEnv* env, jobject bitmap) { in BitmapSurface()
114 void release(JNIEnv* env) override { in release()
162 static jlong Surface_CreateBitmap(JNIEnv* env, jobject, jobject bitmap) { in Surface_CreateBitmap()
166 static jlong Surface_CreateThreadedSurface(JNIEnv* env, jobject, jobject surface) { in Surface_CreateThreadedSurface()
170 static jlong Surface_CreateVK(JNIEnv* env, jobject, jobject jsurface) { in Surface_CreateVK()
189 static jlong Surface_CreateGL(JNIEnv* env, jobject, jobject jsurface) { in Surface_CreateGL()
208 static void Surface_Release(JNIEnv* env, jobject, jlong native_surface) { in Surface_Release()
215 static jlong Surface_GetNativeCanvas(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetNativeCanvas()
222 static void Surface_FlushAndSubmit(JNIEnv* env, jobject, jlong native_surface) { in Surface_FlushAndSubmit()
228 static jint Surface_GetWidth(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetWidth()
233 static jint Surface_GetHeight(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetHeight()
238 static jlong Surface_MakeSnapshot(JNIEnv* env, jobject, jlong native_surface) { in Surface_MakeSnapshot()
251 int register_androidkit_Surface(JNIEnv* env) { in register_androidkit_Surface()