repo.or.cz
/
gdipp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use One-Time Initialization for glyph run caching to avoid duplicate glyph run genera...
[gdipp.git]
/
gdipp_server
/
renderer.cpp
blob
6eda4034ecd7223b9e0f5c90449e1d25c9c467b7
1
#include
"stdafx.h"
2
#include
"renderer.h"
3
4
namespace
gdipp
5
{
6
7
renderer
::
renderer
(
rpc_session
*
render_session
)
8
:
_session
(
render_session
)
9
{
10
}
11
12
renderer
::~
renderer
()
13
{
14
}
15
16
bool
renderer
::
render
(
bool
is_glyph_index
,
LPCWSTR lpString
,
UINT c
,
glyph_run
*
new_glyph_run
)
17
{
18
return true
;
19
}
20
21
}