Searched defs:coeffs (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/
H A Dserver_getmap.c42 GLdouble *coeffs = NULL; local
99 coeffs = (GLdouble *) crAlloc( size );
100 cr_server.head_spu->dispatch_table.GetMapdv( target, query, coeffs );
101 retptr = coeffs;
111 crFree(coeffs);
117 GLfloat *coeffs = NULL; local
174 coeffs = (GLfloat *) crAlloc( size );
175 cr_server.head_spu->dispatch_table.GetMapfv( target, query, coeffs );
176 retptr = coeffs;
186 crFree(coeffs);
192 GLint *coeffs = NULL; local
[all...]
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_lists.c842 GLfloat *coeffs=NULL; local
852 coeffs = crAlloc(order * gleval_sizes[i] * sizeof(GLfloat));
853 if (!coeffs)
858 diff_api.GetMapfv(i + GL_MAP1_COLOR_4, GL_COEFF, coeffs);
868 g->eval.eval1D[i].coeff = coeffs;
878 GLfloat *coeffs=NULL; local
891 coeffs = crAlloc(order[0] * order[1] * gleval_sizes[i] * sizeof(GLfloat));
892 if (!coeffs)
897 diff_api.GetMapfv(i + GL_MAP1_COLOR_4, GL_COEFF, coeffs);
909 g->eval.eval2D[i].coeff = coeffs;
[all...]

Completed in 34 milliseconds