Searched defs:divisor (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
H A DShadowTessellator.cpp256 const Vector2& vector2, float divisor) {
271 return (int) floor(angle / divisor);
255 getExtraVertexNumber(const Vector2& vector1, const Vector2& vector2, float divisor) argument
H A DSpotShadow.cpp121 float divisor = (dx * (p1.y - p2.y) + dy * p2.x - dy * p1.x); local
122 if (divisor == 0) return -1.0f; // error, invalid divisor
125 float interpVal = (dx * (p1.y - rayOrigin.y) + dy * rayOrigin.x - dy * p1.x) / divisor;
132 rayOrigin.x * (p2.y - p1.y)) / divisor;
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp3048 /* void glVertexBindingDivisor ( GLuint bindingindex, GLuint divisor ) */
3051 (JNIEnv *_env, jobject _this, jint bindingindex, jint divisor) {
3054 (GLuint)divisor
3050 android_glVertexBindingDivisor__II(JNIEnv *_env, jobject _this, jint bindingindex, jint divisor) argument
H A Dandroid_opengl_GLES30.cpp4460 /* void glVertexAttribDivisor ( GLuint index, GLuint divisor ) */
4463 (JNIEnv *_env, jobject _this, jint index, jint divisor) {
4466 (GLuint)divisor
4462 android_glVertexAttribDivisor__II(JNIEnv *_env, jobject _this, jint index, jint divisor) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp9716 void GLTrace_glVertexAttribDivisor(GLuint index, GLuint divisor) { argument
9728 // copy argument divisor
9732 arg_divisor->add_intvalue(divisor);
9737 glContext->hooks->gl.glVertexAttribDivisor(index, divisor);
13417 void GLTrace_glVertexBindingDivisor(GLuint bindingindex, GLuint divisor) { argument
13429 // copy argument divisor
13433 arg_divisor->add_intvalue(divisor);
13438 glContext->hooks->gl.glVertexBindingDivisor(bindingindex, divisor);
15712 void GLTrace_glVertexAttribDivisorANGLE(GLuint index, GLuint divisor) { argument
15724 // copy argument divisor
17464 GLTrace_glVertexAttribDivisorEXT(GLuint index, GLuint divisor) argument
22308 GLTrace_glVertexAttribDivisorNV(GLuint index, GLuint divisor) argument
[all...]

Completed in 1399 milliseconds