I'm writing a 2d application for ipad2. I would like to use 2048*1536 pixel coordinate system instead of 1024x768. It is possible? For example I would like to draw a rectangle like the following
CGRect rect = CGRectMake(2000,1000,10,10);
CGContextFillRect(context, rect);
and see the rectanle on the screen. With ipad(one) this is not possible.
thanks