~silwol/freenukum/trunk

« back to all changes in this revision

Viewing changes to src/fn_text.h

  • Committer: Wolfgang Silbermayr
  • Date: 2009-02-20 13:23:01 UTC
  • Revision ID: wolfgang@silbermayr.at-20090220132301-ordzjbq0cdehm88p
Replaced some more SDL_Surface occurrences by FnTexture's

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#include "fn_tilecache.h"
39
39
#include "fn_environment.h"
 
40
#include "fntexture.h"
 
41
#include "fngeometry.h"
40
42
 
41
43
/* --------------------------------------------------------------- */
42
44
 
43
45
void fn_text_printletter(
44
 
    SDL_Surface * target,
45
 
    SDL_Rect * r,
 
46
    FnTexture * target,
 
47
    FnGeometry * r,
46
48
    fn_environment_t * env,
47
49
    char c);
48
50
 
49
51
/* --------------------------------------------------------------- */
50
52
 
51
53
void fn_text_print(
52
 
    SDL_Surface * target,
53
 
    SDL_Rect * r,
 
54
    FnTexture * target,
 
55
    FnGeometry * r,
54
56
    fn_environment_t * env,
55
57
    char * text);
56
58