OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Skia | 3 * Copyright 2011 Skia |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 #include "com_skia_SkiaSampleRenderer.h" | 8 #include "com_skia_SkiaSampleRenderer.h" |
9 | 9 |
10 #include "SampleApp.h" | 10 #include "SampleApp.h" |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 JNIEnv* env, jobject thiz) | 375 JNIEnv* env, jobject thiz) |
376 { | 376 { |
377 gWindow->saveToPdf(); | 377 gWindow->saveToPdf(); |
378 } | 378 } |
379 | 379 |
380 JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_postInval( | 380 JNIEXPORT void JNICALL Java_com_skia_SkiaSampleRenderer_postInval( |
381 JNIEnv* env, jobject thiz) | 381 JNIEnv* env, jobject thiz) |
382 { | 382 { |
383 gWindow->postInvalDelay(); | 383 gWindow->postInvalDelay(); |
384 } | 384 } |
OLD | NEW |