No video memory. no memory acceleration for Intel HD graphics. what now?

I did a quick double buffering on my pc with a Intel HD graphics (integrated with CPU) and works fine but jumpy and flickering a little. I run a check on the BufferedStrategy, BufferCapability and ImageCapability (code below), and found that no video memory, image cannot be accelearated in any way and Java is using blitting to do the double buffering.
Is this normal for Intel HD graphics or my program is flawed anywhere?
import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import javax.swing.*;
import java.util.*;
public class CapTest extends Canvas{
private GraphicsConfiguration gc=null;
private int img_width=0, img_height=0;
private ArrayList<String> sb=null;
public CapTest(int w, int h){
this.img_width=w;
this.img_height=h;
// fixed size of drawing canvas
setPreferredSize(new Dimension(w,h));
setMaximumSize(new Dimension(w,h));
setMinimumSize(new Dimension(w,h));
// create String array
sb=new ArrayList<String>(20);
@Override
public void paint(Graphics g){
g.setColor(Color.black);
g.fillRect(0,0,getWidth(),getHeight());// fillRect(x,y,width,height)
g.setColor(Color.yellow);
int x=4,y=12;
for (int c=0; c<sb.size(); c++){
     g.drawString(sb.get(c),x,y);
     y+=16;
@Override
public void update(Graphics g){
paint(g);
private void start(){
int number;
boolean b;
// create buffers for this Canvas object
createBufferStrategy(2);
// create informational objects
GraphicsEnvironment ge=GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice gd=ge.getDefaultScreenDevice();
GraphicsConfiguration gc=gd.getDefaultConfiguration();
BufferCapabilities bc=gc.getBufferCapabilities();
ImageCapabilities fbc=bc.getFrontBufferCapabilities();
ImageCapabilities bbc=bc.getBackBufferCapabilities();
// create report
sb.add("Device default information:");
sb.add("");
sb.add("From GraphicsDevice==>");
sb.add(String.format("Device ID: %s",gd.getIDstring()));
number=gd.getAvailableAcceleratedMemory();
if (number<=0)
     sb.add(String.format("Available accelerated memory: %d bytes (Oops!)", number));
else
     sb.add(String.format("Available accelerated memory: %d bytes", number));
sb.add("");
sb.add("BufferCapabilities==>");
sb.add("Full screen mode required: "+bc.isFullScreenRequired());
sb.add("Multiple Buffers available: "+bc.isMultiBufferAvailable());
b=bc.isPageFlipping();
sb.add("Use Page flipping: "+b);
if (b)
     sb.add("FlipContents: "+bc.getFlipContents().toString());
else
     sb.add("FlipContents: BLIT");
sb.add("");
sb.add("ImageCapabilities==>");
sb.add("Front buffer accelerated: "+fbc.isAccelerated());
sb.add("Front buffer can lose surface: "+fbc.isTrueVolatile());
sb.add("Back buffer accelerated: "+bbc.isAccelerated());
sb.add("Back buffer can lose surface: "+bbc.isTrueVolatile());
// show the report
repaint();
public void showNow(int w, int h){
JFrame jf=new JFrame("Hardware Capabilities Test");
if ((w==this.img_width) && (h==this.img_height)){
     jf.setResizable(false);
jf.add(this);
// set up default window close action.
jf.addWindowListener(new WindowAdapter(){
     public void windowClosing(WindowEvent e) {
          sb.clear();
          sb=null;
          System.exit(0);
jf.pack();
jf.setVisible(true);
// set up reporting environment.
this.gc=jf.getGraphicsConfiguration();
start();
public static void main(String[] args) {
javax.swing.SwingUtilities.invokeLater(
     new Runnable(){
          public void run(){
               new CapTest(640,400).showNow(640,400);
}Without video memory, how do I create smooth animation? My pc is a Xeon 3.0 Ghz computer with 4GB memory.

leoku wrote:
Is this normal for Intel HD graphicsDepends on the chipset, most of them are "not so good". Heck the JDK is built to disable hardware acceleration entirely for most older chipsets.
If you're looking to discuss this matter I would advise you to take it to java-gaming.org; people there deal with this stuff on a daily basis.

Similar Messages

  • I need updated drivers for Intel HD Graphics 4000

    Hi,
    this is the laptop:
    SATELLITE L50-A-170
    PSKJNE-03L00MIT
    Microsoft Windows 8.1  6.3.9600 (64bit)
    I need the last drivers for Intel HD Graphics 4000, 64-bit version 15.33.32.64.4061 (10.18.10.4061).
    I downloaded the driver but I can't install because:
    "The driver being installed is not valid for this computer. Please obtain the appropriate driver from the computer manufacturer Setup will exit"
    ...but in your support page the last version is 10.18.10.3308.
    What can I do?
    Solved!
    Go to Solution.
    Attachments:
    dati laptop.txt ‏10 KB

    Try this workaround.
       How to Manually Install a Driver in Microsoft Windows 8* or Windows 8.1*
    -Jerry

  • HT5787 i forgot Icloud password and security question what method i can use to reset it is ther any or what i am still using iphone but my icloud is disabled for to many atempts what now how to rest the password

    i forgot Icloud password and security question what method i can use to reset it is ther any or what i am still using iphone but my icloud is disabled for to many atempts what now how to rest the password

    Hi bekimlorini,
    Thanks for visiting Apple Support Communities.
    You may find this article helpful with resetting your security questions:
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    If you're not able to receive email to your rescue email address, you may need to contact iTunes Store Support:
    You'll need to contact iTunes Store support to have your questions and answers reset.
    All the best,
    Jeremy

  • 3D acceleration for intel video cards

    Hi!
    I have an Intel extreme graphics 2 (865G chipset) video card. What packages do I need to install for 3d acceleration (i tested xmoto and other games, they don't work well). Before arch, I had fedora on this machine & all was ok with 3d acceleration.
    thanks in advance,
    -skazhy

    And here is Xorg.0.log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.7.3.901 (1.7.4 RC 1)
    Release Date: 2009-12-11
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.32-ARCH i686
    Current Operating System: Linux localhost 2.6.31-ARCH #1 SMP PREEMPT Tue Nov 10 19:48:17 CET 2009 i686
    Kernel command line: root=/dev/disk/by-uuid/3577837b-8b55-4c01-97ed-de8b26fbb689 ro
    Build Date: 12 December 2009 12:59:40PM
    Current version of pixman: 0.16.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 15 19:42:25 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (II) Loader magic: 0x81e4c60
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (++) using VT number 7
    (--) PCI:*(0:0:2:0) 8086:2572:1014:02c7 Intel Corporation 82865G Integrated Graphics Controller rev 2, Mem @ 0xf0000000/134217728, 0xe8000000/524288, I/O @ 0x00001800/8
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "record"
    (WW) Warning, couldn't open module record
    (II) UnloadModule: "record"
    (EE) Failed to load module "record" (module does not exist, 0)
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.7.0.901, module version = 2.2.1
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 00@00:02:0
    (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules/libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.1.0
    ABI class: X.Org Video Driver, version 6.0
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules/libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org Video Driver, version 6.0
    (II) VESA(0): initializing int10
    (II) VESA(0): Bad V_BIOS checksum
    (II) VESA(0): Primary V_BIOS segment is: 0xc000
    (II) VESA(0): VESA BIOS detected
    (II) VESA(0): VESA VBE Version 3.0
    (II) VESA(0): VESA VBE Total Mem: 8000 kB
    (II) VESA(0): VESA VBE OEM: Intel(r)865G Graphics Chip Accelerated VGA BIOS
    (II) VESA(0): VESA VBE OEM Software Rev: 1.0
    (II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
    (II) VESA(0): VESA VBE OEM Product: Intel(r)865G Graphics Controller
    (II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (==) VESA(0): Depth 24, (--) framebuffer bpp 32
    (==) VESA(0): RGB weight 888
    (==) VESA(0): Default visual is TrueColor
    (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) VESA(0): VESA VBE DDC supported
    (II) VESA(0): VESA VBE DDC Level 2
    (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
    (II) VESA(0): VESA VBE DDC read successfully
    (II) VESA(0): Manufacturer: IBM Model: 24c9 Serial#: 16843009
    (II) VESA(0): Year: 2005 Week: 30
    (II) VESA(0): EDID Version: 1.3
    (II) VESA(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    (II) VESA(0): Sync: Separate Composite
    (II) VESA(0): Max Image Size [cm]: horiz.: 34 vert.: 27
    (II) VESA(0): Gamma: 2.20
    (II) VESA(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    (II) VESA(0): First detailed timing is preferred mode
    (II) VESA(0): redX: 0.641 redY: 0.342 greenX: 0.292 greenY: 0.611
    (II) VESA(0): blueX: 0.147 blueY: 0.068 whiteX: 0.313 whiteY: 0.329
    (II) VESA(0): Supported established timings:
    (II) VESA(0): 720x400@70Hz
    (II) VESA(0): 640x480@60Hz
    (II) VESA(0): 640x480@67Hz
    (II) VESA(0): 640x480@72Hz
    (II) VESA(0): 640x480@75Hz
    (II) VESA(0): 800x600@60Hz
    (II) VESA(0): 800x600@72Hz
    (II) VESA(0): 800x600@75Hz
    (II) VESA(0): 832x624@75Hz
    (II) VESA(0): 1024x768@60Hz
    (II) VESA(0): 1024x768@70Hz
    (II) VESA(0): 1024x768@75Hz
    (II) VESA(0): 1280x1024@75Hz
    (II) VESA(0): 1152x864@75Hz
    (II) VESA(0): Manufacturer's mask: 0
    (II) VESA(0): Supported standard timings:
    (II) VESA(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) VESA(0): #1: hsize: 1280 vsize 1024 refresh: 70 vid: 35457
    (II) VESA(0): Supported detailed timing:
    (II) VESA(0): clock: 108.0 MHz Image Size: 337 x 270 mm
    (II) VESA(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    (II) VESA(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    (II) VESA(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 140 MHz
    (II) VESA(0): Serial No: VC-21701
    (II) VESA(0): Monitor name: IBM L171
    (II) VESA(0): EDID (in hex):
    (II) VESA(0): 00ffffffffffff00244dc92401010101
    (II) VESA(0): 1e0f01036c221b78ea2ee5a4574a9c25
    (II) VESA(0): 115054bdef808180818a010101010101
    (II) VESA(0): 010101010101302a009851002a403070
    (II) VESA(0): 1300510e1100001e000000fd00374c1e
    (II) VESA(0): 530e000a202020202020000000ff0056
    (II) VESA(0): 432d32313730310a20202020000000fc
    (II) VESA(0): 0049424d204c3137310a2020202000f2
    (II) VESA(0): EDID vendor "IBM", prod id 9417
    (II) VESA(0): Using EDID range info for horizontal sync
    (II) VESA(0): Using EDID range info for vertical refresh
    (II) VESA(0): Printing DDC gathered Modelines:
    (II) VESA(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    (II) VESA(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (II) VESA(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
    (II) VESA(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
    (II) VESA(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    (II) VESA(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (II) VESA(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    (II) VESA(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
    (II) VESA(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
    (II) VESA(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    (II) VESA(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    (II) VESA(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
    (II) VESA(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
    (II) VESA(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    (II) VESA(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    (II) VESA(0): Modeline "1280x1024"x70.0 128.94 1280 1368 1504 1728 1024 1025 1028 1066 -hsync +vsync (74.6 kHz)
    (II) VESA(0): Searching for matching VESA mode(s):
    Mode: 160 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 161 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 162 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 163 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 164 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 165 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 166 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 167 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 168 (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 13c (1920x1440)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 1920
    XResolution: 1920
    YResolution: 1440
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 1920
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 14d (1920x1440)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 3840
    XResolution: 1920
    YResolution: 1440
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 3840
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 15c (0x0)
    ModeAttributes: 0x0
    WinAAttributes: 0x0
    WinBAttributes: 0x0
    WinGranularity: 0
    WinSize: 0
    WinASegment: 0x0
    WinBSegment: 0x0
    WinFuncPtr: 0x0
    BytesPerScanline: 0
    XResolution: 0
    YResolution: 0
    XCharSize: 0
    YCharSize: 0
    NumberOfPlanes: 0
    BitsPerPixel: 0
    NumberOfBanks: 0
    MemoryModel: 0
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0x0
    LinBytesPerScanLine: 0
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 0
    Mode: 13a (1600x1200)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 1600
    XResolution: 1600
    YResolution: 1200
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 3
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 1600
    BnkNumberOfImagePages: 3
    LinNumberOfImagePages: 3
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 14b (1600x1200)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 3200
    XResolution: 1600
    YResolution: 1200
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 3200
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    *Mode: 15a (1600x1200)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 6400
    XResolution: 1600
    YResolution: 1200
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 6400
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 230000000
    Mode: 107 (1280x1024)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 1280
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 5
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 5
    LinNumberOfImagePages: 5
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 11a (1280x1024)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 2560
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 2
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 2560
    BnkNumberOfImagePages: 2
    LinNumberOfImagePages: 2
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    *Mode: 11b (1280x1024)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 5120
    XResolution: 1280
    YResolution: 1024
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 0
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 5120
    BnkNumberOfImagePages: 0
    LinNumberOfImagePages: 0
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 230000000
    Mode: 105 (1024x768)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 1024
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 9
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 1024
    BnkNumberOfImagePages: 9
    LinNumberOfImagePages: 9
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 117 (1024x768)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 2048
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 4
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 2048
    BnkNumberOfImagePages: 4
    LinNumberOfImagePages: 4
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    *Mode: 118 (1024x768)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 4096
    XResolution: 1024
    YResolution: 768
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 1
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 4096
    BnkNumberOfImagePages: 1
    LinNumberOfImagePages: 1
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 230000000
    *Mode: 112 (640x480)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 2560
    XResolution: 640
    YResolution: 480
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 5
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 2560
    BnkNumberOfImagePages: 5
    LinNumberOfImagePages: 5
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 230000000
    Mode: 114 (800x600)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 1600
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 7
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 1600
    BnkNumberOfImagePages: 7
    LinNumberOfImagePages: 7
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    *Mode: 115 (800x600)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 3200
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 32
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 3
    RedMaskSize: 8
    RedFieldPosition: 16
    GreenMaskSize: 8
    GreenFieldPosition: 8
    BlueMaskSize: 8
    BlueFieldPosition: 0
    RsvdMaskSize: 8
    RsvdFieldPosition: 24
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 3200
    BnkNumberOfImagePages: 3
    LinNumberOfImagePages: 3
    LinRedMaskSize: 8
    LinRedFieldPosition: 16
    LinGreenMaskSize: 8
    LinGreenFieldPosition: 8
    LinBlueMaskSize: 8
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 8
    LinRsvdFieldPosition: 24
    MaxPixelClock: 230000000
    Mode: 101 (640x480)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 640
    XResolution: 640
    YResolution: 480
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 24
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 640
    BnkNumberOfImagePages: 24
    LinNumberOfImagePages: 24
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 103 (800x600)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 800
    XResolution: 800
    YResolution: 600
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 8
    NumberOfBanks: 1
    MemoryModel: 4
    BankSize: 0
    NumberOfImages: 16
    RedMaskSize: 0
    RedFieldPosition: 0
    GreenMaskSize: 0
    GreenFieldPosition: 0
    BlueMaskSize: 0
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 800
    BnkNumberOfImagePages: 16
    LinNumberOfImagePages: 16
    LinRedMaskSize: 0
    LinRedFieldPosition: 0
    LinGreenMaskSize: 0
    LinGreenFieldPosition: 0
    LinBlueMaskSize: 0
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    Mode: 111 (640x480)
    ModeAttributes: 0x9b
    WinAAttributes: 0x7
    WinBAttributes: 0x0
    WinGranularity: 64
    WinSize: 64
    WinASegment: 0xa000
    WinBSegment: 0x0
    WinFuncPtr: 0xc00057bb
    BytesPerScanline: 1280
    XResolution: 640
    YResolution: 480
    XCharSize: 8
    YCharSize: 16
    NumberOfPlanes: 1
    BitsPerPixel: 16
    NumberOfBanks: 1
    MemoryModel: 6
    BankSize: 0
    NumberOfImages: 12
    RedMaskSize: 5
    RedFieldPosition: 11
    GreenMaskSize: 6
    GreenFieldPosition: 5
    BlueMaskSize: 5
    BlueFieldPosition: 0
    RsvdMaskSize: 0
    RsvdFieldPosition: 0
    DirectColorModeInfo: 0
    PhysBasePtr: 0xf0000000
    LinBytesPerScanLine: 1280
    BnkNumberOfImagePages: 12
    LinNumberOfImagePages: 12
    LinRedMaskSize: 5
    LinRedFieldPosition: 11
    LinGreenMaskSize: 6
    LinGreenFieldPosition: 5
    LinBlueMaskSize: 5
    LinBlueFieldPosition: 0
    LinRsvdMaskSize: 0
    LinRsvdFieldPosition: 0
    MaxPixelClock: 230000000
    (II) VESA(0): Total Memory: 125 64KB banks (8000kB)
    (II) VESA(0): Monitor0: Using hsync range of 30.00-83.00 kHz
    (II) VESA(0): Monitor0: Using vrefresh range of 55.00-76.00 Hz
    (II) VESA(0): Monitor0: Using maximum pixel clock of 140.00 MHz
    (WW) VESA(0): Unable to estimate virtual size
    (II) VESA(0): Not using built-in mode "1600x1200" (no mode of this name)
    (--) VESA(0): Virtual size is 1280x1024 (pitch 1280)
    (**) VESA(0): *Built-in mode "1280x1024"
    (**) VESA(0): *Built-in mode "1024x768"
    (**) VESA(0): *Built-in mode "800x600"
    (**) VESA(0): *Built-in mode "640x480"
    (**) VESA(0): Display dimensions: (340, 270) mm
    (**) VESA(0): DPI set to (95, 96)
    (**) VESA(0): Using "Shadow Framebuffer"
    (II) Loading sub module "shadow"
    (II) LoadModule: "shadow"
    (II) Loading /usr/lib/xorg/modules/libshadow.so
    (II) Module shadow: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.1.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.7.3.901, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (==) Depth 24 pixmap format is 32 bpp
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Reloading /usr/lib/xorg/modules/libint10.so
    (II) VESA(0): initializing int10
    (II) VESA(0): Bad V_BIOS checksum
    (II) VESA(0): Primary V_BIOS segment is: 0xc000
    (II) VESA(0): VESA BIOS detected
    (II) VESA(0): VESA VBE Version 3.0
    (II) VESA(0): VESA VBE Total Mem: 8000 kB
    (II) VESA(0): VESA VBE OEM: Intel(r)865G Graphics Chip Accelerated VGA BIOS
    (II) VESA(0): VESA VBE OEM Software Rev: 1.0
    (II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
    (II) VESA(0): VESA VBE OEM Product: Intel(r)865G Graphics Controller
    (II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
    (II) VESA(0): virtual address = 0xb688a000,
    physical address = 0xf0000000, size = 8192000
    (II) VESA(0): Setting up VESA Mode 0x11B (1280x1024)
    (==) VESA(0): Default visual is TrueColor
    (==) VESA(0): Backing store disabled
    (==) VESA(0): DPMS enabled
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: Screen 0 is not DRI2 capable
    (II) AIGLX: Screen 0 is not DRI capable
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    (II) GLX: Initialized DRISWRAST GL provider for screen 0
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 2.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found relative axes
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device HID 04b3:310b
    (**) HID 04b3:310b: always reports core events
    (**) HID 04b3:310b: Device: "/dev/input/event5"
    (II) HID 04b3:310b: Found 3 mouse buttons
    (II) HID 04b3:310b: Found scroll wheel(s)
    (II) HID 04b3:310b: Found relative axes
    (II) HID 04b3:310b: Found x and y relative axes
    (II) HID 04b3:310b: Configuring as mouse
    (**) HID 04b3:310b: YAxisMapping: buttons 4 and 5
    (**) HID 04b3:310b: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "HID 04b3:310b" (type: MOUSE)
    (**) HID 04b3:310b: (accel) keeping acceleration scheme 1
    (**) HID 04b3:310b: (accel) acceleration profile 0
    (II) HID 04b3:310b: initialized for relative axes.
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event4"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event3"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"

  • Can I set in my Satellite C660-1M4 minimal memory for Intel Hd Graphics?

    There in no option in BIOS v 1.9. I just need it for simple game, but there are some problems with the integrated graphic card with dynamic memory. If there would be an option to set minimal memory use for Intel HD G propably the game would run.
    Thanks for help.
    JL

    Hi
    You cannot assign or change the shared memory value.
    This is controlled by display driver and if an applications needs more graphic memory, the driver would assign and share the memory automatically.

  • Solved: LR6 GPU supported for Intel HD Graphics 4000 (Windows 8.1 64-bit)

    HD Graphics 4000 is supported with latest Intel driver as shown by LR CC (2015) System Info report (text at bottom). Note an older driver (supplied by the laptop vendor) failed the GPU check.
    Chrome browser users: The URL "chrome://gpu" can be used to quickly access detailed driver and monitor information (other information listed is specific to Chrome).
    Is GPU acceleration supported for Intel 4000 with the latest driver? LR6 GPU FAQ requirements below. However, new Intel 4000 driver (Version: 15.33.35.64.4176) incorporates support for DirectX 11.0 (which dates from Windows Vista (see below)), OpenGL 4.0, & OpenCL 1.2 (see Intel® Download Center).
    Note: Intel HD Graphics 4400 supports DirectX 11.2 (may exclude some optional features), OpenGL 4.3, and OpenCL 1.2
    extracted from Adobe Photoshop Lightroom Help | Lightroom GPU FAQ
    Minimum System Requirements
    64-bit OS versions only
    OpenGL 3.3 and later
    Mac OS 10.9 and later
    Windows 7 and later
    Note: Intel 4400 or later required
    Note: GPU acceleration is disabled on Mac OS 10.8
    Note: GPUs running under virtual machines are not tested or supported.
    Intel Information Center
    Intel(R) HD Graphics 4000
    Report Date: Thursday, April 23, 2015
    Report Time [hh:mm:ss]: 1:28:22 PM
    Driver Version: 10.18.10.4176
    Operating System: Windows* 8.1 (6.3.9600)
    Default Language: English (Canada)
    Installed DirectX* Version: 11.2  <= operating system’s DirectX version
    Supported DirectX* Version: 11.0 <= Graphics Driver’s DirectX version
    Shader Version: 5.0
    OpenGL* Version: 4.0
    OpenCL* Version: 1.2
    Physical Memory: 8077 MB
    Processor: Intel(R) Core(TM) i5-3337U CPU @ 1.80GHz
    Processor Speed: 1796 MHz
    Vendor ID: 8086
    Device ID: 0166
    Device Revision: 09
    DirectX Versions
    (extracted from How to install the latest version of DirectX)
    DirectX 11.2 is included in Windows 8.1.
    Note There is no standalone update package for DirectX 11.2. You can only install this DirectX version through Windows Update in Windows 8.1,
    DirectX 11.1 for Windows 7 SP1
    DirectX 11.0 for Windows Vista SP2
    Extracted from LR CC (2015) System Info
    Lightroom version:  CC 2015 [1014445]
    License: Expired Trial
    Real memory available to Lightroom: 8077.7 MB
    Real memory used by Lightroom: 339.0 MB (4.1%)
    Virtual memory used by Lightroom: 293.4 MB
    Memory cache size: 0.0 MB
    Maximum thread count used by Camera Raw: 2
    Camera Raw SIMD optimization: SSE2,AVX
    System DPI setting: 115 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1366x768, 2) 1366x768
    Input types: Multitouch: No, Integrated touch: No, Integrated pen: No, External touch: No, External pen: No, Keyboard: No
    Graphics Processor Info:
    Check OpenGL support: Passed
    Vendor: Intel
    Version: 3.3.0 - Build 10.18.10.4176
    Renderer: Intel(R) HD Graphics 4000
    LanguageVersion: 3.30 - Build 10.18.10.4176
    *** Note *** GPU check fails with older Intel HD Graphics 4000 driver
    Check OpenGL support: Failed
    Vendor: Intel
    Version: 3.3.0 - Build 10.18.10.3308
    Renderer: Intel(R) HD Graphics 4000
    LanguageVersion: 3.30 - Build 10.18.10.3308

    This one says 64bits: Intel HD Graphics Driver
    Revision : 01
    Software name Intel HD Graphics Driver
    Support models ThinkPad Edge E120
    ThinkPad Edge E320
    ThinkPad L420, L421
    ThinkPad L520
    ThinkPad X121e, X130e
    Operating Systems Microsoft Windows 7 64-bit
    Microsoft Windows Vista 64-bit
    Refer to marketing materials to find out what computer models
    support which Operating Systems.
    Versions 8.15.10.2827 (Package)
    - 8.15.10.2827 (Graphics Driver)
    - 6.14.00.3086 (Display Audio Driver)
    Support devices Intel HD Graphics Device
    Intel Display Audio
    /L40SX/240/240X/2*340CSE/360PE/365XD/380D/380E/380XD/380Z/390/560E/560X/2*570/2*600/600E/750Cs/755C/760CD/760EL/760XD/770E/A20p/A22p
    A31/i1600/G40/R50p/R61i/S30/SL510/2*T22/4*T4x/11*T6x/6*T4x0x/6*T5x0/3*W5x0/W700/3*X2x/4*X3x/3*X4x/5*X6x/3*X6xT/10*X2xx/2*X200T/4*X30x/Z60m/3*Z61x
    Comunidad en Español  English Community  Deutsche Community   Русскоязычное Сообщество

  • Windows Update for Intel HD Graphics 3000 gives error 80070103

    I have a Windows 7 x64 machine that has an Intel HD Graphics card. Driver details:
    Intel Corporation
    1/29/2014
    9.17.10.3347
    This month's Windows Updates shows an optional update for me to update the Intel HD Graphics card. It says released by Intel January 2015 and released by Microsoft 3/12/2015. It looks like a more up to date driver but it will not install, instead I get that
    error 80070103.
    I googled the error and it seems to indicate that the version of my driver is more recent than the version Windows Update wants to give me. I don't think that's right though, based on the dates. In the Device Manager when I click on the display adapter and
    update driver it says the driver is already the most recent version. But it's not.
    Any ideas?

    Hi popchoc,
    You may follow the suggestions provided by S.Sengupta.
    Besides, regarding error 80070103, the below is the article talking about it:
    Windows Update error 80070103
    If you receive Windows Update error 80070103 while installing updates, you might be trying to install a driver that is already installed on your computer or a driver that might be less compatible than one you already have installed. To find more information
    or to get help, try these options:
    If you want to install the latest driver for a specific device, program, or game, try manually updating the driver instead of using Windows Update. For more information, see
    Update a driver for hardware that isn't working properly.
    Go to the
    Discussions in Windows Update website to see if someone else has found a solution or to request help from other Windows users.
    Go to  the
    Microsoft Community website to try to find more information about the error code.
    Hide the update so it's not offered again.
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Where is Intel Control Center install / where do I find the program for Intel HD Graphics options?

    Hello,
    I reinstalled the NVidia Quadro 2000M driver, which also reinstalled Intel HD graphics.  I did this because I was having problems opening up Photoshop 5 - not sure if I needed to do that, because the problem remained afterwards, but then magically, it works every time now.  So something fixed itself.
    Anyway, after it reinstalled Intel HD Graphics, the Intel Control Center button, which opens Intel HD Graphics options does not work.  I realize that the Intel Control Center is just a simple front-end with a couple of buttons, but how can I get it to work again?... I cannot find the install program.  Also, as an alternative, where is the executable to get to the Intel HD Graphics - and what is its name?
    Thanks!

    From the Finder, hold down the option key and click on the "Go" menu bar. You'll see your user Library listed there.
    Clinton

  • Satellite Pro L300 - OpenGL 2.0 support for Intel Integrated Graphics

    Just want to share the news that I was able to install the new Intel Chipset drivers that add OpenGL 2.0 support to their integrated graphics chips, such as the X3100.
    This driver was released in December 2008 and even though Intel recommends waiting for OEM versions from Toshiba, I decided to try theirs.
    Links and more info are found in this thread:
    http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&ProductID=2800&DwnldID=1722 0&strOSs=All&OSFullName=All%20Operating%20Systems& lang=eng
    This new driver is for all laptops with the following chipsets:
    Intel(R) G31 Express Chipset
    Intel(R) G33 Express Chipset
    Intel(R) G35 Express Chipset
    Intel(R) G41 Express Chipset
    Intel(R) G43 Express Chipset
    Intel(R) G45 Express Chipset
    Intel(R) Q33 Express Chipset
    Intel(R) Q35 Express Chipset
    Intel(R) Q43 Express Chipset
    Intel(R) Q45 Express Chipset
    Mobile Intel(R) GL40 Express Chipset
    Mobile Intel(R) GL960 Express Chipset
    Mobile Intel(R) GLE960 Express Chipset
    Mobile Intel(R) GM45 Express Chipset
    Mobile Intel(R) GM965 Express Chipset
    Mobile Intel(R) GME965 Express Chipset
    Mobile Intel(R) GS45 Express Chipset
    Maybe someone will try the exe file installation and report back -
    I followed the manual installation instructions and for now everything works fine.
    Message was edited

    Hi mate
    First of all thanks a lot
    Ive got a U400 and I have installed a Intel graphic card driver from the Intel page too.
    I didnt execute the exe file but I updated my driver in device manager.
    This worked fine.
    Also I read here in the forum that drivers from external pages can be used only at the own risk because such drivers are not tested and not certified by Toshiba
    However, my U400 run trouble free till now.

  • System reporting 512MB of VRAM for Intel HD Graphics 3000

    Hi,
    I just notice in the System Profiler my MacBook Pro is reporting 512MB of VRAM although the Apple claims it would have up to 384MB. Do you think it is correct?

    If you go through the spec http://support.apple.com/kb/SP620?viewlocale=en_US
    go down to the end (section 5)
    "Memory available to Mac OS X may vary depending on graphics needs. Minimum graphics memory usage is 384MB."
    So its normal and correct

  • I think video/audio chat is down for the whole world right now

    Thurs April 17th
    I video chat with people across america and even across the globe ALL THE TIME.
    today, though I can text chat with iChat, iChat will not allow a single video or audio chat with anyone.
    I have tried from different computers and different internet locations.
    I wonder if the AIM network is just having a big problem today....does that sound right to anyone?
    maybe better luck tomorrow, because this usually works ALL THE TIME and not a single setting has changed for me
    thank you

    Ralph,
    I concur that the AV/screen sharing side of iChat AV is essentially broken (21:06 GMT). I have two different people I talk to regularly and neither are working today. The two parties also cannot talk to each other, which worked regularly before.
    Using the "errorLogLevel 7" CLI switch, I see this which I believe is unusual (but I can't be positive it's the problem):
    154810.494894 BWD_GetBandwidth: SendRequest (from :16397)
    154810.745610 BWD_GetBandwidth: SendRequest (from :16397)
    154810.995934 BWD_GetBandwidth: SendRequest (from :16397)
    154811.246246 BWD_GetBandwidth: SendRequest (from :16397)
    154811.496856 BWD_GetBandwidth: SendRequest (from :16397)
    154811.747104 BWD_GetBandwidth: SendRequest (from :16397)
    154811.997659 BWD_GetBandwidth: SendRequest (from :16397)
    154812.247966 BWD_GetBandwidth: GotResponse
    154812.248029 BWD_Get: signal failed
    154812.248098 BWD GetBW failed.
    154812.248116 Using old cached values.
    154812.248294 GotBandwidth: 496971/6572982 (up/down) @@C??
    This log is repeatable for two different Macs on two different cable ISPs separated by thousands of miles.
    FWIW, the test accounts (appleu3test0x) do work, but my perception is that the test accounts are computers with full public IP addresses and minimal (or possibly no) firewalls. A perfect test setup like that probably sidesteps the issues that are occurring.
    - Patrick
    Message was edited by: Patrick Fergus

  • Updating driver for intel hd3000 graphics

    Hello again,                     I am updating my graphics driver intel hd 3000 on my pavilion g4 1226 se but when i run the step 1. detect my device on hp website it cannot detect that my graphics driver which is currently has  version of 8.15.10.2353 that it needed to be upgraded on version 8.15.10.2559, which i have to go directly to step 2 and download it manually, but after downloading it and then while installing there will always an error that says " the setup program failed to install one or more drivers. The setup will exit".  Anybody knows how to fix this?  pls help me.

    Hi
    I assume you have installed the graphic card driver from the Intel website and you use NOT a Toshiba graphic driver which was designed especially for the notebook usage.
    Well, Toshiba recommend using the Toshiba drivers. In this case you should try to use the recommended graphic driver which you can download from the Toshiba driver page.

  • Awesome WM, intel GMA950 graphics - what to use for compositing?

    See title. I'm looking for something simple, basic window transparency, no 3d stuff.  I tried xcompmgr with transset, but that's too slow, renders my system near useless.

    bump back to page 1

  • Re: I need updated drivers for Intel HD Graphics 4000

    hello hello iam having problem here is there anybody can help me i have toshiba satellite p845-s4200 the cpu temprature is 90%and i am not using anything every time i open my computer without using any application the pc health moniture say
    the cpu temprature 90% and it never dereace  after some days someone told me to recover my computer using recovery wizard and i did but nothing is it just like the way iy was 
    help help
    what should i do 
    jerry i think you can help me and i will appreciate it
    Attachments:
    Capturer.PNG ‏119 KB

    someone told me to recover my computer using recovery wizard and i did but nothing is it just like the way iy was
    If you have restored the hard disk to its original out-of-the-box contents and the problem continues, it is not due to software on the hard drive. That includes drivers, of course..
    -Jerry

  • Motion 1 (not on intel machine) so what now...

    I'm an IMac virgin... well almost. I got my first IMac (intel based) about a month ago, not knowing that there was this great (G4,G5-intel) chasm. I bought Motion 1 only to find out after I loaded it that it doesn't work on my machine! I'm sure I'm not the only one who's done this. It seems, by what I've read so far, that there is no way to upgrade to a (WORKING VERSION) and that APPLE doesn't really care about it's customers. Am I right...
    1. Do I sell Motion 1 to someone who can use it
    2. Do i wait to see if Apple ever realizes that (maybe they should make an upgrade available)
    3. Do i wait to see if Apple ever releases a stand alone version of MOTION that WILL run on my machine
    4. Do I sell my IMac and go back to WINDOWS :-(

    I'm accusing apple of not caring about their customers because they don't offer an upgrade for a product they know won't run on intel based machines and they offer no way to buy Motion2, as a stand alone. Yes I bought without "researching" as much as I, NOW know I have to with apple products. I'm use to seeing (minimal requirements) and I stupidly thought my intel based IMac met the (minimal requirements) as I think most PC users would. I now, know this is wrong thinking. So... I'm stuck with unuseable software and no way to upgrade or just buy motion 2, without having to buy the whole bundle.
    Don't get me wrong, I like my mac I just get frustrated with this kind of thing and I just don't understand why apple doesn't sell motion 2 as a stand alone. If anyone at apple is listening! PLEASE make it avaliable as a stand alone, I can't afford the entire suite at this time.

Maybe you are looking for