summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_syncfb.c
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-11-26 01:03:31 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2003-11-26 01:03:31 +0000
commitf7c890258f736dc45ae81e2097df6c9658e93606 (patch)
treeeed0d30d99ebbdc649d7fb20329ec2911357b877 /src/video_out/video_out_syncfb.c
parent1daacd9d5b53cac2671d2bd9c93a3daa629254ea (diff)
downloadxine-lib-f7c890258f736dc45ae81e2097df6c9658e93606.tar.gz
xine-lib-f7c890258f736dc45ae81e2097df6c9658e93606.tar.bz2
* new unscaled overlay feature (using XShape extension)
text subtitles may now be rendered at full screen resolution * load xine fonts on demand - faster startup note: support added to xv, xshm and vidix CVS patchset: 5780 CVS date: 2003/11/26 01:03:31
Diffstat (limited to 'src/video_out/video_out_syncfb.c')
-rw-r--r--src/video_out/video_out_syncfb.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c
index ea301fd99..4aa89fa69 100644
--- a/src/video_out/video_out_syncfb.c
+++ b/src/video_out/video_out_syncfb.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_syncfb.c,v 1.92 2003/11/11 18:45:00 f1rmb Exp $
+ * $Id: video_out_syncfb.c,v 1.93 2003/11/26 01:03:32 miguelfreitas Exp $
*
* video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine
*
@@ -644,6 +644,15 @@ static int syncfb_get_property(vo_driver_t* this_gen, int property)
{
syncfb_driver_t* this = (syncfb_driver_t *) this_gen;
+ switch (property) {
+ case VO_PROP_WINDOW_WIDTH:
+ this->props[property].value = this->sc.gui_width;
+ break;
+ case VO_PROP_WINDOW_HEIGHT:
+ this->props[property].value = this->sc.gui_height;
+ break;
+ }
+
return this->props[property].value;
}