Lines Matching defs:pixels
163 unsigned* pixels;
229 ball->pixels = (unsigned*)calloc( diameter2*diameter2, sizeof(unsigned) );
230 ball->surface = sdl_surface_from_argb32( ball->pixels, diameter2, diameter2 );
391 if (ball->pixels) {
392 free( ball->pixels );
393 ball->pixels = NULL;
397 /*** TRACKBALL SPHERE PIXELS
476 unsigned* pixels = ball->pixels;
544 pixels[coord->x + diameter*coord->y] = color;