Mercurial > mplayer.hg
view loader/wrapper.h @ 23011:365eef1fc4f0
Disable caching of rotated glyphs.
The following commits will add perspective distortion to the glyphs rotated
with \frx and \fry. Somewhere along the way correct caching of such glyphs
will become impossible, but in the end everything will be fine.
author | eugeni |
---|---|
date | Fri, 20 Apr 2007 22:49:48 +0000 |
parents | ee76aa308c0a |
children | c98c9e7f3bd0 |
line wrap: on
line source
#ifndef _WRAPPER_H #define _WRAPPER_H #include <inttypes.h> typedef struct { uint32_t edi, esi, ebp, esp, ebx, edx, ecx, eax; } reg386_t; typedef int (*wrapper_func_t)(void *stack_base, int stack_size, reg386_t *reg, uint32_t *flags); extern wrapper_func_t report_entry, report_ret; extern void (*wrapper_target)(void); extern int wrapper(void); extern int null_call(void); #endif /* _WRAPPER_H */