Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
83130c98
Commit
83130c98
authored
Mar 06, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Freetype: do not ship dead code on WinRT dll
This allows freetype.dll to pass WACK
parent
dacf900c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/text_renderer/platform_fonts.c
modules/text_renderer/platform_fonts.c
+1
-1
modules/text_renderer/platform_fonts.h
modules/text_renderer/platform_fonts.h
+1
-1
No files found.
modules/text_renderer/platform_fonts.c
View file @
83130c98
...
@@ -178,7 +178,7 @@ char* FontConfig_Select( filter_t *p_filter, const char* family,
...
@@ -178,7 +178,7 @@ char* FontConfig_Select( filter_t *p_filter, const char* family,
}
}
#endif
#endif
#if
def _WIN32
#if
defined( _WIN32 ) && !VLC_WINSTORE_APP
#define FONT_DIR_NT _T("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Fonts")
#define FONT_DIR_NT _T("SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Fonts")
static
int
GetFileFontByName
(
LPCTSTR
font_name
,
char
**
psz_filename
)
static
int
GetFileFontByName
(
LPCTSTR
font_name
,
char
**
psz_filename
)
...
...
modules/text_renderer/platform_fonts.h
View file @
83130c98
...
@@ -85,7 +85,7 @@ void FontConfig_BuildCache( filter_t *p_filter );
...
@@ -85,7 +85,7 @@ void FontConfig_BuildCache( filter_t *p_filter );
#endif
#endif
#if
def _WIN32
#if
defined( _WIN32 ) && !VLC_WINSTORE_APP
char
*
Win32_Select
(
filter_t
*
p_filter
,
const
char
*
family
,
char
*
Win32_Select
(
filter_t
*
p_filter
,
const
char
*
family
,
bool
b_bold
,
bool
b_italic
,
int
i_size
,
int
*
i_idx
);
bool
b_bold
,
bool
b_italic
,
int
i_size
,
int
*
i_idx
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment