Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
5e56eb1f
Commit
5e56eb1f
authored
Oct 29, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Freetype: mark as _rgb the appropriate options
parent
20acb53f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/text_renderer/freetype.c
modules/text_renderer/freetype.c
+4
-4
No files found.
modules/text_renderer/freetype.c
View file @
5e56eb1f
...
...
@@ -187,7 +187,7 @@ vlc_module_begin ()
change_safe
()
/* hook to the color values list, with default 0x00ffffff = white */
add_
integer
(
"freetype-color"
,
0x00FFFFFF
,
COLOR_TEXT
,
add_
rgb
(
"freetype-color"
,
0x00FFFFFF
,
COLOR_TEXT
,
COLOR_LONGTEXT
,
false
)
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
)
change_safe
()
...
...
@@ -198,7 +198,7 @@ vlc_module_begin ()
add_integer_with_range
(
"freetype-background-opacity"
,
0
,
0
,
255
,
BG_OPACITY_TEXT
,
""
,
false
)
change_safe
()
add_
integer
(
"freetype-background-color"
,
0x00000000
,
BG_COLOR_TEXT
,
add_
rgb
(
"freetype-background-color"
,
0x00000000
,
BG_COLOR_TEXT
,
""
,
false
)
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
)
change_safe
()
...
...
@@ -206,7 +206,7 @@ vlc_module_begin ()
add_integer_with_range
(
"freetype-outline-opacity"
,
255
,
0
,
255
,
OUTLINE_OPACITY_TEXT
,
""
,
false
)
change_safe
()
add_
integer
(
"freetype-outline-color"
,
0x00000000
,
OUTLINE_COLOR_TEXT
,
add_
rgb
(
"freetype-outline-color"
,
0x00000000
,
OUTLINE_COLOR_TEXT
,
""
,
false
)
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
)
change_safe
()
...
...
@@ -218,7 +218,7 @@ vlc_module_begin ()
add_integer_with_range
(
"freetype-shadow-opacity"
,
128
,
0
,
255
,
SHADOW_OPACITY_TEXT
,
""
,
false
)
change_safe
()
add_
integer
(
"freetype-shadow-color"
,
0x00000000
,
SHADOW_COLOR_TEXT
,
add_
rgb
(
"freetype-shadow-color"
,
0x00000000
,
SHADOW_COLOR_TEXT
,
""
,
false
)
change_integer_list
(
pi_color_values
,
ppsz_color_descriptions
)
change_safe
()
...
...
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