Changeset 3614 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 13, 2007 1:49:10 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxFB/Framebuffer.cpp
r3153 r3614 174 174 if (!lineSize) 175 175 return NS_ERROR_INVALID_POINTER; 176 *pixelFormat = FramebufferPixelFormat_PixelFormat Default;176 *pixelFormat = FramebufferPixelFormat_PixelFormatOpaque; 177 177 return NS_OK; 178 178 } -
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
r3578 r3614 107 107 mGuestXRes = 640; 108 108 mGuestYRes = 480; 109 mPixelFormat = FramebufferPixelFormat_PixelFormat Default;109 mPixelFormat = FramebufferPixelFormat_PixelFormatOpaque; 110 110 mPtrVRAM = NULL; 111 111 mLineSize = 0; … … 636 636 637 637 /* is the guest in a linear framebuffer mode we support? */ 638 if (mPixelFormat != FramebufferPixelFormat_PixelFormat Default)638 if (mPixelFormat != FramebufferPixelFormat_PixelFormatOpaque) 639 639 { 640 640 /* Create a source surface from guest VRAM. */ -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxFrameBuffer.h
r3578 r3614 249 249 virtual FramebufferPixelFormat_T pixelFormat() 250 250 { 251 return FramebufferPixelFormat_PixelFormat Default;251 return FramebufferPixelFormat_PixelFormatOpaque; 252 252 } 253 253
Note:
See TracChangeset
for help on using the changeset viewer.