Intel hd graphics 3000 vs radeon hd6470m (1 gb)

I'm planning to buy a Pavilion dm4x and debating over which graphics card to choose.  Would the Radeon card place a significant increase in the power usage, i.e., all other things being equal, would it require recharging the battery sooner?
Also, I don't see anything in the sales information about the graphics being "switchable".  If I get the Radeon, would it still have the Intel hd graphics 3000 built-in, and if so, would the choice graphics engine be switchable in the bios settings?

r_stiltskin wrote:
Also, I don't see anything in the sales information about the graphics being "switchable".  If I get the Radeon, would it still have the Intel hd graphics 3000 built-in, and if so, would the choice graphics engine be switchable in the bios settings?
Hi,
The DM4x series may have many models/products for many different configutaions. You have to read the configuration for each model/product and decide which one meets your need. And depending on your place/country, the model/product you like may not appear on your market at all.
Regards,
BH
**Click the KUDOS thumb up on the left to say 'Thanks'**
Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

Similar Messages

  • HT203254 Macbook pro 15. Intel HD Graphics 3000/ AMD Radeon HD 6490M. Screen seems 'solarized'/pixellated at startup. disappears after 30 minutes. Any idea of cause and cure?

    New Machine in Mar 2011. OS version 10.6.8
    All software updates installed via Automatic update.
    Screen has a 'solarized' look on start up, which disappears after about 30 mins, suggesting a 'warm up' issue?
    Am aware of Nvidia issues with Macbook pro but this machine has the following graphics/display on logic board.
    Does anyone have a view on this matter and a way of resolving it? Still under extended warranty.
      Chipset Model:          AMD Radeon HD 6490M
      Type:          GPU
      Bus:          PCIe
      PCIe Lane Width:          x8
      VRAM (Total):          256 MB
      Vendor:          ATI (0x1002)
      Device ID:          0x6760
      Revision ID:          0x0000
      ROM Revision:          113-C0170H-521
      gMux Version:          1.9.23
      EFI Driver Version:          01.00.521
      Displays:
    Color LCD:
      Resolution:          1680 x 1050
      Pixel Depth:          32-Bit Color (ARGB8888)
      Main Display:          Yes
      Mirror:          Off
      Online:          Yes
      Built-In:          Yes
    Intel HD Graphics 3000:
      Chipset Model:          Intel HD Graphics 3000
      Type:          GPU
      Bus:          Built-In
      VRAM (Total):          384 MB
      Vendor:          Intel (0x8086)
      Device ID:          0x0116
      Revision ID:          0x0009
      gMux Version:          1.9.23

    You said the magic words:  Still under extended warranty.  Take it in for evaluation and repair.  That is not a normal situation.  The display should not have to 'warm up'.
    Ciao.

  • Cant find driver for graphics AMD Radeon 6600M and 6700M series / Intel(R) Graphics 3000

    my graphic drivers doesnt work so my screen in stretched and wide then the usual. My hp assitant recommades the following two graphics drivers 
    AMD Radeon 6600M and 6700M series
    version: 14.501.1003.0
    Intel(R) Graphics 3000
    version: 9.17.10.2932
    cant any one help me reconfiguer my screen
    HP Envy 14  

    Hi:
    What is the full model number of your Envy 14 notebook and what operating system are you running on it?

  • I have my macbook pro 17" 2.5 Q.C. i7,750GB HDD 5400rpm, 4gb ram, amd radeon 1gb dedicated graphics with intel hd graphics 3000,antiglare screen when i turned on my laptop and see the specs is not showing the 1gb graph. only 512mb.

    i have my macbook pro 17" 2.5 Quad. Core. i7,750GB HDD 5400rpm, 4gb ram, amd radeon 1gb dedicated graphics with intel hd graphics 3000,antiglare screen when i turned on my laptop and see the specs is not showing the 1gb graph. only 512mb is there anybody out there have the same problem please how can i know or is there any other way to be sure what's the real capacity of my graphics?take note this is brand new late 2011 model made to customize MD311 with anti glare screen...

    I have the same machine, except it's running the blessed fast Snow Kitty,
    "when I turn on my laptop and see the specs is not showing the 1gb graph, only 512mb is there"
    What specs are you refering about?
    Hold the command shift and 4 keys down, draw a box around what your seeing and upload the desktop image in your post response here.

  • Intel HD Graphics 3000 backlight [PartlySolved]

    Hi!
    I've got HP Pavilion g6 laptop with Intel HD Graphics 3000 on Core i5. And it works correctly, except for backlight.
    # echo 5 > /sys/class/backlight/acpi_video0/brightness
    Gives no effect, thow /sys/class/backlight/acpi_video0/brightness is 5 now;
    Besides acpi_video0 there is acpi_video1 and acpi_video2. I didn't succeed to do the same with them.
    acpi_osi=Linux and acpi_backlight=vendor
    as kernel parametrs didn't help me.
    Moreover
    #setpci -s 00:02.0 F4.B=05
    didn't have an effect.
    Im going to build a custom kernel now. Plese tell me, what moudules are need to be compiled in, and how do i need to use them.
    Also on mu laptop i have Radeon HD 6470M.
    #modprobe radeon
    #echo DIS > /sys/kernel/debug/vgaswitcheroo/switch
    Takes an effect, that system losts control over screen.
    Help please.
    PS Sorry of my poor english.
    PPS I've chosen Laptop Issues topic, and i'm not shure, I was right.
    Last edited by Dronte (2011-09-18 08:40:36)

    I've looked through the xf86-video-intel and found a function there
    static void
    intel_output_backlight_set(xf86OutputPtr output, int level)
    struct intel_output *intel_output = output->driver_private;
    char path[BACKLIGHT_PATH_LEN], val[BACKLIGHT_VALUE_LEN];
    int fd, len, ret;
    if (level > intel_output->backlight_max)
    level = intel_output->backlight_max;
    if (! intel_output->backlight_iface || level < 0)
    return;
    len = snprintf(val, BACKLIGHT_VALUE_LEN, "%d\n", level);
    sprintf(path, "%s/%s/brightness",
    BACKLIGHT_CLASS, intel_output->backlight_iface);
    fd = open(path, O_RDWR);
    if (fd == -1) {
    xf86DrvMsg(output->scrn->scrnIndex, X_ERROR, "failed to open %s for backlight "
    "control: %s\n", path, strerror(errno));
    return;
    ret = write(fd, val, len);
    if (ret == -1) {
    xf86DrvMsg(output->scrn->scrnIndex, X_ERROR, "write to %s for backlight "
    "control failed: %s\n", path, strerror(errno));
    close(fd);
    I didn't find, where this function sets the backlight. It only prints the information.
    Last edited by Dronte (2011-09-12 21:01:03)

  • Will Sims 3 run on Mac OS X Leopard 10.6 with an Intel HD Graphics 3000 card?

    I recently replaced my broken laptop with a Macbook Pro 13" operating on OS X Snow Leopard 10.6.7. I wanted to continue playing the Sims 3 as I had done on my previous laptop. It installed fine onto my Mac and allowed me to create people. When moving them into a household, the game suddenly froze (appearing as if it is on pause) meaning I need to actually switch on and off my Mac to clear the screen.
    Could this be because my Mac has an Intel HD Graphics 3000 card? The Mac system requirements for the Sims 3 asks for an ATI X1600, a Nvidia 7300 GT or an Intel Integrated GMA X3100. If so, how do I go about fixing this? Would I need to physically buy a new graphics card to accommodate the game?
    I'm not a massive gamer but it appears I am a bit of a Mac dummy!
    Please help if you can

    Sounds like it.   Unfortunately you can't replace the graphics card.   Replace the computer*:
    http://www.macmaps.com/usedrefurbished.html

  • Which is better for gaming intel hd graphics 3000 or nvidia geforce

    i want to sue steam and i sonder which is better for gaming :Intel HD Graphics 3000 384 MB graphics or nvidia geforce . If you know a better graphics card please let me know thanx.

    sorry i had lots of typos

  • [SOLVED] StarCraft 2 flickering w/ mesa / intel HD graphics 3000

    I'm using mesa 8.0.4 and Intel HD Graphics 3000, wine 32-bit and -opengl and force_s3tc_enable=true
    It flickers on ground in lighter colors and over the screen in triangles, also sometimes green color is over the screen, it depends on the map and the colors of the map.
    I will try to take a video.
    UPDATE: http://www.youtube.com/watch?v=tsaEd-dTAlQ <-- this is one of the artifacts/flickering, it looks very much like this. I can get the same SCV flickers in campaign !
    I've never experienced this before, I am not sure if it's caused by an update by mesa or StarCraft 2.
    Mesa/Intel HD 3000 however runs StarCraft 2 fine, but this problem really has ruined my game within a short period of time, I feel really epileptic !
    Last edited by dezza (2012-10-12 08:34:26)

    I think I found a fix, haven't tested thoroughly yet though ... Since I reinstalled StarCraft 2 and deleted my .wine directory, the registry keys for graphics tweaking was also gone.
    I re-created:
    [HKEY_CURRENT_USER\Software\Wine\Direct3D]
    "DirectDrawRenderer"="opengl"
    "Multisampling"="disabled"
    "OffscreenRenderingMode"="fbo"
    "PixelShaderMode"="enabled"
    "RenderTargetLockMode"="readtex"
    "StrictDrawOrdering"="disabled"
    "UseGLSL"="disabled"
    As told here:
    http://wiki.winehq.org/UsefulRegistryKeys
    NOTE: UseGLSL is special and is only needed for video cards like mine (Intel HD Graphics 3000) that forces s3tc like explained here: https://wiki.archlinux.org/index.php/St … r_Problems
    And it seems to work ...
    I think I have to remove VideoMemory all together, because my StarCraft 2 has crashed 2 times now complaining about low video memory - so it's better with an OpenGL auto-detection of vram or if the problem persists a much larger value.
    Last edited by dezza (2012-10-12 08:30:18)

  • OPENGL disabled with Intel HD Graphics 3000 384 MB

    Macbook Air with Intel HD Graphics 3000 384 MB. When attempting to open 3D file Photoshop cc14.2.1 receive error message "Could not complete your request because 3D functionality is currently disabled due to OpenGL being disabled." Cannot enable OPENGL in preferences. What to do besides buy new Mac with different graphics card?

    Hi p,
    If you mean software, go to the Apple menu and select Software Update.
    If you mean the actual hardware GPU, that is soldered onto the logic board and is not upgradeable.

  • Lenovo G510, the Intel HD Graphics 4600 and Radeon 8750M, will not work!

    Good evening,
    I have a Lenovo G510, 59401564, i7 with Intel HD Graphics 4600 and Radeon 8750M graphics card.
    I have problems with graphics cards to get it to work permanently!
    The installation of the graphics card driver works fine but after about 30 minutes an hour, crashes the laptop and a bright blue screen is shown "VIDEO_DXGKRNL_FATAL_ERROR".
    After a restart, the Graffikarten are disabled, a small window says that the driver must be reinstalled.
    I have the Windows 8.1 64-bit, drivers from the Lenovo website uses. To reinstall, I used Catalyst_13.12_WHQL_UnifL_R3.01.exe.
    I've been trying to determine two days why.
    I really need help, I think more users have the same problem.
    I am grateful for any help!

    hi angefragt,
    Welcome to Lenovo Community Forums!
    Did you just got the unit or You got it some time around?
       If you were able to use the comuter before you might need to push a system restore to a date when the crashes did not appear. Adn start a Windows Update.
     According to this, It may be a conflict, Driver or OS issue,
                http://msdn.microsoft.com/en-us/library/windows/hardware/ff557253(v=vs.85).aspx
    Regards
    Solid Cruver
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Increasing shared VRAM on Intel HD Graphics 3000

    Hello,
    Question about MacBook Pro (13-inch, Early 2011) with Intel HD Graphics 3000. I upgraded RAM with 16GB, and wonder if it is possible to allocate more then 512 MB of system memory for shared VRAM. Now system profiler shows 512 MB shared VRAM, the same like it was with 8 GB RAM before the RAM upgrade.
    "About integrated video on Intel-based Macs" topic (http://support.apple.com/kb/HT3246) mentions MBPs with 8 GB of RAM only.
    Thanks!

    HI M,
    On a Windows machine, you can go into the BIOS and change RAM allocation.
    I have found nothing to suggest the same is true on a Mac. It appears it is controlled in ROM, and unless Apple makes a firemware upgrade, it is what it its. Which begs the question, what is it?
    Given that the article you cite states the VRAM allocation goes from 256MB to 512MB by increasing RAM from 4GB to 8GB in one example, it would seem that amount might go up to 1GB VRAM with 16GB of RAM. As you're probably aware, Apple bases everything on RAM available at time of production of the Mac, and never goes back to change specs as RAM density increases, so it may also be "locked in" at 512MB for 8GB.
    Bottome line: It's possible the base VRAM available may indeed go up as needed on your Mac, but that's far from certain. There is information out there on the internet suggesting this "as needed" theory, so you may want to do further searching reading and see if you can find that needle in a haystack.

  • Impossible de mettre à jour mon Mac Book Air avec Mavericks. Pourquoi ? MacBook Air 13 ", mi-2011 Proc  1.7 GHz Intel Core i5 Mem  4 Go 1333 MHz DDR3 Graph  Intel HD Graphics 3000 384 MB N°  C02GDCBADJWT Logiciel  Mac OS X 10.7.5

    Impossible de mettre à jour mon Mac Book Air avec Mavericks. Pourquoi ? MacBook Air 13 ", mi-2011 Proc  1.7 GHz Intel Core i5 Mem  4 Go 1333 MHz DDR3 Graph  Intel HD Graphics 3000 384 MB N°  C02GDCBADJWT Logiciel  Mac OS X 10.7.5

    UPDATING post above.
    Excel slowing down is particularly when I do "copy" or "paste" (up to 3 seconds before the action is taken into account).
    I tried with empty or very small files, problem is the same.
    I checked autoupdates of Microsoft, everything is up to date.
    I made the test of David Linc, with no issue.
    Anyone having same situation or solution ?
    Thank you
    F.

  • I have Macbook Pro with Intel HD Graphics 3000 but can't see airplay anywhere?? Help

    I have a Macbook Pro 13" full spec, bought in March 2012 uk and it has the Intel HD Graphics 3000...however i CANNOT FIND AIRPLAY anywhere!! Am i missing something?
    When I go to display there is no drop down menu for apple tv etc...it's driving me crazy!
    I believe my graphics card is compatible and the osx is mountain lion [i presume as it's 10.7.4] so do I need to download it or buy it or is airplay hidden somewhere?
    Thanks

    Ah ok, someone told me it was mountian lion...well that explains that. So if I get mountain lion for my macbook...as it has the Intel then it should have airplay?
    Also...if i get mountain Lion and install it will it delete any of my files? like will it completely start the computer again like a reset or will it keep all my files etc? I use final cut pro and have a lot of files that it talks to etc and don't want to loose all this.
    Thanks

  • Trouble with the PS CC2014 3D Effects - Intel HD Graphics 3000 that doesn't work properly?

    I Have a MBP 13 inch 2.8 GHz Intel Core i7 late 2011 and I'm Having trouble with the PS CC2014 3D Effects crashing when trying to apply a New 3D extrusion, are there any solution regarding the Intel HD Graphics 3000 that doesn't work properly?
    Thanks!

    Look at this document. It should help you troubleshoot and it suggests settings to try out.
    Photoshop CC and CC 2014 GPU FAQ
    While the stock advice for Windows users is to go to the Intel site for updates, Mac users can only get their drivers in the Mac OSX system updates. So you need to be sure your OS is up to date. If you have an earlier version, like 10.7 or 10.8, it is possible an upgrade to 10.9 might help.

  • I have upgraded my MacBook Pro 15 late 2011 to 8Gb RAM, now when I go to about this mac in it more info it doesn't show AMD graphics card as it used to before, it just show  Intel HD Graphics 3000 512 MB is that a problem that I need to worry about?

    I have upgraded my MacBook Pro 15 late 2011 to 8Gb RAM, now when I go to about this mac in it more info it doesn't show AMD graphics card as it used to before, it just show  Intel HD Graphics 3000 512 MB is that a problem that I need to worry about?
    and in system report >> hardware >> Graphics/Display >> it shows both grafics card listed.

    Some Mac's when the RAM is increased the Intel HD 3000 integrated graphics will bump itself up to the higher video RAM it takes, this seems to be what occured.
    It also means the dedicated graphics card will be used less, but only so slightly less.
    You obviously still should have both, you can test this by turning off Graphics Switching in Energy Saver, that will use the decicated AMD card all the time.
    You can also run Cinebench and compare the scores here
    Mac video card performance

Maybe you are looking for

  • Moved iTunes to external hard drive, iTunes can't find location of music

    I recently moved my iTunes and library to an external hard drive as my laptop was running too slowly. Suddenly I can't play any music (only some podcasts) directly from my iTunes. Those selected in my iPod Selection folder will play on my iPod. There

  • Reports successfully execute but generate a login failed for user 'sa' err

    I am running Crystal Reports Server XI R2. Classic ASP is used to generate embedded reports within our application. The crystal reports use ODBC to connect to a SQL Server 2005 database. The reports successfully generate in our Classic ASP applicatio

  • A question about e-mailing

    I have an old hotmail account and I hadn't used it for a long time, until today. I wasn't careful with that account at all. I remember giving to anywhere, even dangerous web sites and stuff. I always got spam mail. Today I needed that account and use

  • Vanishing Point Exchange Reference

    Hi everyone. I'm a total noob at After Effects, but I have been playing with it to manipulate some VPE files I created in Photoshop. Does anyone know if there are any reference documents that describe what's under the hood in VPE? I can see that Phot

  • Syncing iphone (icloud) contacts to google contacts

    Good day, everyone. I've followed the steps here (which are the same as the Apple.com version of this article): http://support.Google.com/mail/bin/answer.py?hl=en&answer=2753077. Unfortunately, I do not see any contacts transferring from my device to