put_FullScreenMode and GetMaxIdealImageSize ARE WRONG

  • Thread starter Thread starter Tamir Khason
  • Start date Start date
T

Tamir Khason

Please assist:
I have DirectStream window and I want it in fullscreen mode. So what's the
problem?
myWindow.put_FullScreenMode(OATRUE); // That's it...BUT
The windows going to be just like GetMaxIdealImageSize (it's about 384X282
or something like this) <- and I see just small sqare at the left top of the
screen - WHY!? Adn how to get it in Real Full Screen Mode ???

TNX
 
Hi Tamir,

We have reviewed this issue and are currently researching on it. We will
update you ASAP. Thanks for your patience!

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Hi Tamir,
What returned from put_FullScreenMode(OATRUE)? Are you sure that you have
video renderer filter in the graph support this interface?


Best regards,
Rhett Gong [MSFT]
Microsoft Online Partner Support

This posting is provided "AS IS" with no warranties, and confers no rights.
Please reply to newsgroups only. Thanks.
 
Hi Tamir,
With my XP box, I could correctly have the video sample shown in full
screen mode (with following code).
//---------------------------------------------------
IVideoWindow *pVW = NULL;
pGraph->QueryInterface(IID_IVideoWindow, (void**) &pVW);
pVW->put_FullScreenMode(OATRUE);
// return noerr and set to full screen mode without any probelms
//-----------------------------------------------------
From your post, seems you have the full screen mode support in filter but
when scaled to Full screen the sample is shown in a small sqare at the left
top of the screen. I can't repro this problem in my machine. :(
If you would like, I could send my simple test code to you. Or you could
post some code snippets in the newsgroup and send a little video sample to
my mail box.


Thanks,
Rhett Gong [MSFT]
Microsoft Online Partner Support

This posting is provided "AS IS" with no warranties, and confers no rights.
Please reply to newsgroups only. Thanks.
 
Back
Top