Home
last modified time | relevance | path

Searched refs:vertexStride (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/graphics/java/android/graphics/
H A DMeshSpecification.java291 @IntRange(from = 1, to = 1024) int vertexStride, in make()
296 vertexStride, varyings, vertexShader, in make()
329 @IntRange(from = 1, to = 1024) int vertexStride, in make()
336 vertexStride, varyings, vertexShader, in make()
374 @IntRange(from = 1, to = 1024) int vertexStride, in make()
381 nativeMakeWithAlpha(attributes, vertexStride, varyings, vertexShader, in make()
397 private static native long nativeMake(Attribute[] attributes, int vertexStride, in nativeMake() argument
400 private static native long nativeMakeWithCS(Attribute[] attributes, int vertexStride, in nativeMakeWithCS() argument
403 private static native long nativeMakeWithAlpha(Attribute[] attributes, int vertexStride, in nativeMakeWithAlpha() argument
/aosp14/frameworks/base/libs/hwui/jni/
H A DMeshSpecification.cpp72 static jlong Make(JNIEnv* env, jobject thiz, jobjectArray attributeArray, jint vertexStride, in Make() argument
78 auto meshSpecResult = SkMeshSpecification::Make(attributes, vertexStride, varyings, in Make()
88 static jlong MakeWithCS(JNIEnv* env, jobject thiz, jobjectArray attributeArray, jint vertexStride, in MakeWithCS() argument
96 attributes, vertexStride, varyings, SkString(skVertexShader.c_str()), in MakeWithCS()
107 jint vertexStride, jobjectArray varyingArray, jstring vertexShader, in MakeWithAlpha() argument
114 attributes, vertexStride, varyings, SkString(skVertexShader.c_str()), in MakeWithAlpha()