Lines Matching refs:panel
96 MyTessPanelObj panel; member
273 sc->panel.posArray = MEMAllocFromAllocator(&DemoAllocator1, PANEL_ARRAY_SIZE * sizeof(f32)); in DrawInit()
274 ASSERT( sc->panel.posArray != 0 ); in DrawInit()
275 sc->panel.normArray = MEMAllocFromAllocator(&DemoAllocator1, PANEL_ARRAY_SIZE * sizeof(f32)); in DrawInit()
276 ASSERT( sc->panel.normArray != 0 ); in DrawInit()
277 sc->panel.type = 0; in DrawInit()
280 CreateTessPanel(&sc->panel); in DrawInit()
332 DrawTessPanel(&sc->panel); in DrawTick()
448 sc->panel.type += 1; in AnimTick()
449 sc->panel.type %= NUM_PANELTYPE; in AnimTick()
450 CreateTessPanel(&sc->panel); in AnimTick()
454 sc->panel.type += NUM_PANELTYPE - 1; in AnimTick()
455 sc->panel.type %= NUM_PANELTYPE; in AnimTick()
456 CreateTessPanel(&sc->panel); in AnimTick()