URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [mw/] [src/] [drivers/] [mou_tp.h] - Rev 1772
Go to most recent revision | 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;
Go to most recent revision | Compare with Previous | Blame | View Log