URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [services/] [gfx/] [mw/] [v2_0/] [src/] [drivers/] [mou_tp.h] - Rev 174
Compare with Previous | Blame | View Log
/* mou_tp.h */ #define TRANSFORMATION_UNITS_PER_PIXEL 4 typedef struct { /* * Coefficients for the transformation formulas: * * m = (ax + by + c) / s * n = (dx + ey + f) / s * * These formulas will transform a device point (x, y) to a * screen point (m, n) in fractional pixels. The fraction * is 1 / TRANSFORMATION_UNITS_PER_PIXEL. */ int a, b, c, d, e, f, s; } TRANSFORMATION_COEFFICIENTS;