Commit 1a913c6a authored by Eric Petit's avatar Eric Petit

Removes --macosx-fill which has been long broken and is now replaced with the cropping vars

parent ec6749f1
...@@ -66,11 +66,6 @@ void E_(CloseVideoGL) ( vlc_object_t * ); ...@@ -66,11 +66,6 @@ void E_(CloseVideoGL) ( vlc_object_t * );
"resizing the video instead of keeping the aspect ratio and "\ "resizing the video instead of keeping the aspect ratio and "\
"displaying black borders.") "displaying black borders.")
#define FILL_TEXT N_("Crop borders in fullscreen")
#define FILL_LONGTEXT N_("In fullscreen mode, crop the picture if " \
"necessary in order to fill the screen without black " \
"borders (OpenGL only)." )
#define BLACK_TEXT N_("Black screens in fullscreen") #define BLACK_TEXT N_("Black screens in fullscreen")
#define BLACK_LONGTEXT N_("In fullscreen mode, keep screen where there is no " \ #define BLACK_LONGTEXT N_("In fullscreen mode, keep screen where there is no " \
"video displayed black" ) "video displayed black" )
...@@ -109,8 +104,6 @@ vlc_module_begin(); ...@@ -109,8 +104,6 @@ vlc_module_begin();
OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_TRUE ); OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_TRUE );
add_bool( "macosx-black", 0, NULL, BLACK_TEXT, BLACK_LONGTEXT, add_bool( "macosx-black", 0, NULL, BLACK_TEXT, BLACK_LONGTEXT,
VLC_TRUE ); VLC_TRUE );
add_bool( "macosx-fill", 0, NULL, FILL_TEXT, FILL_LONGTEXT,
VLC_TRUE );
add_bool( "macosx-background", 0, NULL, BACKGROUND_TEXT, BACKGROUND_LONGTEXT, add_bool( "macosx-background", 0, NULL, BACKGROUND_TEXT, BACKGROUND_LONGTEXT,
VLC_FALSE ); VLC_FALSE );
add_submodule(); add_submodule();
......
...@@ -668,7 +668,6 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable, ...@@ -668,7 +668,6 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
var_Get( p_vout->p_libvlc, "drawable", &value_drawable ); var_Get( p_vout->p_libvlc, "drawable", &value_drawable );
var_Create( p_vout, "macosx-vdev", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); var_Create( p_vout, "macosx-vdev", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
var_Create( p_vout, "macosx-fill", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
var_Create( p_vout, "macosx-stretch", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); var_Create( p_vout, "macosx-stretch", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
var_Create( p_vout, "macosx-opaqueness", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT ); var_Create( p_vout, "macosx-opaqueness", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT ); var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment