Lines Matching refs:map2d

552    struct gl_2d_map *map2d;  in _mesa_GetnMapdvARB()  local
567 map2d = get_2d_map(ctx, target); in _mesa_GetnMapdvARB()
568 ASSERT(map1d || map2d); in _mesa_GetnMapdvARB()
577 data = map2d->Points; in _mesa_GetnMapdvARB()
578 n = map2d->Uorder * map2d->Vorder * comps; in _mesa_GetnMapdvARB()
600 v[0] = (GLdouble) map2d->Uorder; in _mesa_GetnMapdvARB()
601 v[1] = (GLdouble) map2d->Vorder; in _mesa_GetnMapdvARB()
616 v[0] = (GLdouble) map2d->u1; in _mesa_GetnMapdvARB()
617 v[1] = (GLdouble) map2d->u2; in _mesa_GetnMapdvARB()
618 v[2] = (GLdouble) map2d->v1; in _mesa_GetnMapdvARB()
619 v[3] = (GLdouble) map2d->v2; in _mesa_GetnMapdvARB()
644 struct gl_2d_map *map2d; in _mesa_GetnMapfvARB() local
659 map2d = get_2d_map(ctx, target); in _mesa_GetnMapfvARB()
660 ASSERT(map1d || map2d); in _mesa_GetnMapfvARB()
669 data = map2d->Points; in _mesa_GetnMapfvARB()
670 n = map2d->Uorder * map2d->Vorder * comps; in _mesa_GetnMapfvARB()
692 v[0] = (GLfloat) map2d->Uorder; in _mesa_GetnMapfvARB()
693 v[1] = (GLfloat) map2d->Vorder; in _mesa_GetnMapfvARB()
708 v[0] = map2d->u1; in _mesa_GetnMapfvARB()
709 v[1] = map2d->u2; in _mesa_GetnMapfvARB()
710 v[2] = map2d->v1; in _mesa_GetnMapfvARB()
711 v[3] = map2d->v2; in _mesa_GetnMapfvARB()
738 struct gl_2d_map *map2d; in _mesa_GetnMapivARB() local
753 map2d = get_2d_map(ctx, target); in _mesa_GetnMapivARB()
754 ASSERT(map1d || map2d); in _mesa_GetnMapivARB()
763 data = map2d->Points; in _mesa_GetnMapivARB()
764 n = map2d->Uorder * map2d->Vorder * comps; in _mesa_GetnMapivARB()
786 v[0] = map2d->Uorder; in _mesa_GetnMapivARB()
787 v[1] = map2d->Vorder; in _mesa_GetnMapivARB()
802 v[0] = IROUND(map2d->u1); in _mesa_GetnMapivARB()
803 v[1] = IROUND(map2d->u2); in _mesa_GetnMapivARB()
804 v[2] = IROUND(map2d->v1); in _mesa_GetnMapivARB()
805 v[3] = IROUND(map2d->v2); in _mesa_GetnMapivARB()