Lines Matching refs:map2d

494    struct gl_2d_map *map2d;  in _mesa_GetnMapdvARB()  local
507 map2d = get_2d_map(ctx, target); in _mesa_GetnMapdvARB()
508 assert(map1d || map2d); in _mesa_GetnMapdvARB()
517 data = map2d->Points; in _mesa_GetnMapdvARB()
518 n = map2d->Uorder * map2d->Vorder * comps; in _mesa_GetnMapdvARB()
540 v[0] = (GLdouble) map2d->Uorder; in _mesa_GetnMapdvARB()
541 v[1] = (GLdouble) map2d->Vorder; in _mesa_GetnMapdvARB()
556 v[0] = (GLdouble) map2d->u1; in _mesa_GetnMapdvARB()
557 v[1] = (GLdouble) map2d->u2; in _mesa_GetnMapdvARB()
558 v[2] = (GLdouble) map2d->v1; in _mesa_GetnMapdvARB()
559 v[3] = (GLdouble) map2d->v2; in _mesa_GetnMapdvARB()
584 struct gl_2d_map *map2d; in _mesa_GetnMapfvARB() local
597 map2d = get_2d_map(ctx, target); in _mesa_GetnMapfvARB()
598 assert(map1d || map2d); in _mesa_GetnMapfvARB()
607 data = map2d->Points; in _mesa_GetnMapfvARB()
608 n = map2d->Uorder * map2d->Vorder * comps; in _mesa_GetnMapfvARB()
630 v[0] = (GLfloat) map2d->Uorder; in _mesa_GetnMapfvARB()
631 v[1] = (GLfloat) map2d->Vorder; in _mesa_GetnMapfvARB()
646 v[0] = map2d->u1; in _mesa_GetnMapfvARB()
647 v[1] = map2d->u2; in _mesa_GetnMapfvARB()
648 v[2] = map2d->v1; in _mesa_GetnMapfvARB()
649 v[3] = map2d->v2; in _mesa_GetnMapfvARB()
676 struct gl_2d_map *map2d; in _mesa_GetnMapivARB() local
689 map2d = get_2d_map(ctx, target); in _mesa_GetnMapivARB()
690 assert(map1d || map2d); in _mesa_GetnMapivARB()
699 data = map2d->Points; in _mesa_GetnMapivARB()
700 n = map2d->Uorder * map2d->Vorder * comps; in _mesa_GetnMapivARB()
722 v[0] = map2d->Uorder; in _mesa_GetnMapivARB()
723 v[1] = map2d->Vorder; in _mesa_GetnMapivARB()
738 v[0] = IROUND(map2d->u1); in _mesa_GetnMapivARB()
739 v[1] = IROUND(map2d->u2); in _mesa_GetnMapivARB()
740 v[2] = IROUND(map2d->v1); in _mesa_GetnMapivARB()
741 v[3] = IROUND(map2d->v2); in _mesa_GetnMapivARB()