summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoracki2 <acki2@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-01 22:01:28 +0000
committeracki2 <acki2@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-04-01 22:01:28 +0000
commit335fc17b448b7fc00ec26641a9be15fe2ce50ec6 (patch)
treeec89c870d3269773ef4a2b52e2a73ad15765dc5f /libvo
parenta14917a3a6d36efeb720604a2a7b7732db783e40 (diff)
downloadmpv-335fc17b448b7fc00ec26641a9be15fe2ce50ec6.tar.bz2
mpv-335fc17b448b7fc00ec26641a9be15fe2ce50ec6.tar.xz
- still more debug output to be able to fix 15/16 bpp problem
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@273 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_dga.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/libvo/vo_dga.c b/libvo/vo_dga.c
index 827990b621..9f60c51e1a 100644
--- a/libvo/vo_dga.c
+++ b/libvo/vo_dga.c
@@ -19,6 +19,9 @@
* o works only on intel architectures
*
* $Log$
+ * Revision 1.10 2001/04/01 22:01:28 acki2
+ * - still more debug output to be able to fix 15/16 bpp problem
+ *
* Revision 1.9 2001/04/01 08:07:14 acki2
* - added detection of memsize of graphics card to check if double buffering is possible
* - fixed resolution switching a little and added more debug output
@@ -261,11 +264,15 @@ static uint32_t query_format( uint32_t format )
{
// this only for debug reasons ...
if(modelines[i].bitsPerPixel == 15 || modelines[i].bitsPerPixel == 16){
- printf("vo_dga: depth: %d, %08x, %08x, %08x\n",
+ printf("vo_dga: num: %d, depth: %d, bpp: %d, %08x, %08x, %08x, %dx%d\n",
+ i,
+ modelines[i].depth,
modelines[i].bitsPerPixel,
modelines[i].redMask,
modelines[i].greenMask,
- modelines[i].blueMask);
+ modelines[i].blueMask,
+ modelines[i].viewportWidth,
+ modelines[i].viewportHeight);
}
for(k=0, dummy=1; k<modelines[i].bitsPerPixel-1; k++)dummy <<=1;
dga_depths |= dummy;
@@ -498,6 +505,9 @@ static uint32_t init( uint32_t width, uint32_t height,
{
if( modelines[i].bitsPerPixel == vo_dga_planes)
{
+
+ printf("maxy: %4d, depth: %2d, %4dx%4d, ", modelines[i].maxViewportY, modelines[i].depth,
+ modelines[i].imageWidth, modelines[i].imageHeight );
if ( check_mode(i, d_width, d_height, modelines[i].bitsPerPixel,
modelines[i].viewportWidth,
modelines[i].viewportHeight,