T61 - directdraw and agp texture acceleration not available

hi i have a problem with directx i think
os: winxp sp3
on dxdiag:
in the display tab  - i get on directdraw and on the agp accelaration not available, and i cant enable them
the direct3d is enabled.
next to the direct draw and the directt3d  there is the test button, when i press it -
the direct draw test pass
direct3d fail on 1st test
i tried to:
reinstalled directx 9c
 install the lastest display driver from lenovo (vga card- intel 965 gm)
remove all codecs (xvid,divx, etc..) and install them back.
but i dont really get a clue how to solve this.
this is a problem for me as i can't watch movies correctly on my media player (and any other player, like vlc)
- i c squares in xvid/ divx files (which i compiled on other computer)
- on av-dvi files i c lines (got the movie out of a dvi camera using windoes movie maker and a firewire cable)
 note: both of the files runs smoothly on my other computer, and the same codecs are installed on both oof them
pls advise on how to solve this problem.
thank you.
here is the log file which i get from the dxdiag tool:
http://rapidshare.com/files/236263295/DxDiag.txt.html
Message Edited by dror on 05-23-2009 02:50 AM
Message Edited by dror on 05-23-2009 02:54 AM

Please give us some more information...
Why do you think the stated forms of Acceleration are not available? Where are you getting this information from?
Please take a look at the Windows Device Manager. What Display Adapter do you have, and at what level is its driver?
Centex

Similar Messages

  • DirectDraw Acceleration, Direct3D Acceleration, AGP Texture Acceleration NOT AVAILABLE

    ThinkPad T61 7664-RWU
    As the title says, the DirectDraw Acceleration, Direct3D Acceleration, and AGP Texture Acceleration are not available. What driver should I install to make them available? Where to download the driver?

    Please give us some more information...
    Why do you think the stated forms of Acceleration are not available? Where are you getting this information from?
    Please take a look at the Windows Device Manager. What Display Adapter do you have, and at what level is its driver?
    Centex

  • [Athlon64] K8M Neo-V (AGP Texture acceleration: Not Available)

    Well i hope somebody can help me. This is a new MoBo and i have no idea as to why i cant get this AGP slot to work in Win ME.
    No 3d games work since in directX diag i can see that the Agp texture acceleration is Not available. I ahve tried all settings in Bios and made sure all drivers are current. I have even tried to load the chipset driver first before the Ati video drivers and still nothing.
    If any of you computer guru's knows this problem please help. It seems to be a very common problem when i go a google on it but i never see a result. Thanks for any help on this. Right now this pc is only good to surf the web.
    here is my specs and direct X layout:
    Ati driver date 8-17-05 version 4.15.1.9163
    Via driver 4 in 1 version 4.56
    Bios  A7032VMS V3.3 101304
    Mobo K8M Neo-V (MS-7032)
    AMD 2800+ Athlon 64
    Via chipset VT82337/K8M800
    ATI radon 9600se
    OS Win ME
    Power supply: Maddog 550w
    Direct X diag shows: and excuse the size,
    System Information
    Time of this report: 10/12/2005, 04:40:25
           Machine name: AMD2800
       Operating System: Windows Me (4.90, Build 3000) 
               Language: English (Regional Setting: English)
    System Manufacturer: MSI
           System Model: MS-7032
                   BIOS: American Megatrends
              Processor: AMD Athlon(tm) 64 Processor 2800+,  MMX,  3DNow, ~1.8GHz
                 Memory: 512MB RAM
              Page File: 212MB used, 1324MB available
            Windows Dir: C:\WINDOWS
        DirectX Version: DirectX 9.0c (4.09.0000.0904)
    DX Setup Parameters: Not found
         DxDiag Version: 4.09.0000.0904 32bit

    This was why i posted all that info lol:
    Ati driver date 8-17-05 version 4.15.1.9163
    Via driver 4 in 1 version 4.56 <-----------------------------------------------------Look here 
    Bios  A7032VMS V3.3 101304
    Mobo K8M Neo-V (MS-7032)
    AMD 2800+ Athlon 64
    Via chipset VT82337/K8M800
    ATI radon 9600se
    OS Win ME
    Power supply: Maddog 550w

  • Slower graphics in JVM 6u23 than 6u03 w/o AGP Texture Acceleration

    We have two workstations:
    OS: XP SP3
    Video HW: NVIDIA Quaddro cards
    dxdiag: DirectDraw, Direct3D, and AGP Texture Acceleration are enabled, and can be disabled
    JRE: 6u23
    We have a laptop:
    OS: XP SP3
    Video HW: integrated video device
    dxdiag: DirectDraw and Direct3D are enabled, AGP Texture Acceleration is disabled / greyed out
    JRE: 6u23
    It seems obvious that the laptop just doesn't have the hardware capability to handle AGP Texture Acceleration, which is no surprise.
    We notice on the laptop that when we click on a button within our application, and a large panel gets swapped out for a different one, there is a scanning repaint problem. What I mean is that panel A disappears, and panel B appears in its place, painting from left to right ("scanning"), and takes about two to four seconds to fully paint the new panel. The tabs also flicker in a strange way when we mouse over them. This doesn't happen on our workstations.
    On our workstations, if we disable AGP Texture Acceleration within the dxdiag app, the undesired behaviors exhibitted by the laptop do not occur. However, if we disable DirectDraw (and by extension Direct3D / AGP Texture Acceleration), we can see the same behavior on the workstations as we see on the laptop. This also occurs if we use the jvm arg -Dsun.java2d.noddraw=true.
    If we run our application on the laptop with the jvm arg -Dsun.java2d.d3d=false, or =true, the problems remain. If the laptop uses JRE 6u03 instead of 6u23, the problems go away. I haven't tried using the -Dsun.java2d.noddraw jvm arg on the laptop, but I will attempt to do so later today.
    I originally posted this in the Swing forums, thinking that it was more of a Swing related issue, but I believe the real problem is more Java2D related. Any assistance would be greatly appreciated.

    Thank you for the information, BoBear. I have question about this technique. The paint method in my application is overloaded, and I have access to the component (tab) I'm drawing the image on. When I create the Graphics2D object from the compatible BufferedImage object, and try to draw my other BufferedImage to it, the image that I'm trying to paint doesn't appear. am I doing this right?
    public void paint(Graphics g) {
       Image image = this.getTab().getBackgroundImage(); // Get the image to draw as a background for the tab
       int tabW = this.getTab().getPreferredSize().getWidth();
       int tabH = this.getTab().getPreferredSize.getHeight();
       int imgW = image.getWidth(this); // this is an ImageObserver
       int imgH = image.getHeight(this);
       Graphics 2D g2d = this.getTab().getGraphicsConfiguration.createCompatibleImage(imgW, imgH).createGraphics();
       for (int x = 0; x < width; x += imgW){
          for (int y = 0; y < height; y += imageH){
             g2d.drawImage(img, x, y, this);
    }If I draw to the Graphics object g, the execution time of drawImage is problematically high. If I draw to the Graphics2D object g2d, the background image doesn't draw at all. Thank you in advance for your insight.

  • I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password pro

    I have created a PDF and password protected it for view. However, when reading the PDF in Adobe Reader app on the iPad the commenting and annotation options are not available. Is there a way to allow commenting and annotation in the app while password protecting the document?

    Is there a setting that needs to be set to allow the annotation features?  I set password protection to open and then password for editing and set it to Any except page extraction, but it still did not give the annotation option

  • I changed companies and had icloud with my old company - now i want to just use my personal id and can't change any icloud info to match my personal ipad id - i can't delete the icloud without the old company id and password which is not available to me

    i changed companies and had icloud with my old company - now i want to just use my personal id and can't change any icloud info to match my personal ipad id - i can't delete the icloud without the old company id and password which is not available to me - it probably doesn't even exist anymore!
    Because I can't delete the icloud account, I keep getting view terms to accept and it wants to go to the old company account.  I can't do anything to get rid of this - when I try to delete the icloud it wants me to delete find my ipad and asks for the old co. id and password - it's a vicious circle and i just want to get rid of it and start fresh with my regular personal email id and password!!!  Help!

    You will need that old Apple ID and password, which does indeed still exist. Apple doesn't delete Apple IDs, though if this ID was in the control of your company they may have changed the password. If so, you will need your former company to log into the iCloud account using that ID and password and erase the iPad or remove it from iCloud:
    http://support.apple.com/kb/TS4515?viewlocale=en_US
    Until that's done you cannot change those settings, and if you try to restore the iPad will have it locked with Activation Lock and thereafter be unusable.
    Regars.

  • HT4059 Why Indian authours and Indians books are not available in your iBooks store.

    Why Indian authours and Indians books are not available in your iBooks store.

    Thats because Indian publishers may have not signed an agreement with Apple. Worst part is even if I want to publish a book for free using official iBooks Author, it does not publish on Indian iBooks Store.

  • Icm trace level if smicm and SAP MMC are not available ( CE system on Unix)

    Hi Experts,
    Could you please let me know how will I increase the icm trace level if SMICM transaction code and SAP MMC are not available.
    I have an CE 7.2 system running on HP UNIX.
    Thanks and Regards
    Syam

    http://help.sap.com/saphelp_nw70/helpdata/en/0b/6aedff404d6b4a8cac8f1359e1b47c/frameset.htm
    kill -USR2 <pid>
    Markus

  • XP PC Does not see Media Card. Device Memory and Media Card are not available.....

    I am starting a new thread because the old one was marked as resolved and it isn't.
    My Windows XP desktop is no longer seeing my BB Storm Media Card. I am getting the error:
    "Device Memory and Media Card are not available because the Mass Storage is currently in use."
    I have followed these directions:
    Options > Memory >
    Media Card Supoport - ON
    Media Transfer Protocol (MTP) - ON
    Mass Storage Mode Support - ON
    Auto Enable Mass Storage Mode When Connected - YES
    SAVE
    I have application free pace 8.1 MB
    and the error message:
    "Device Memory and Media Card are not available because the Mass Storage is currently in use."
    The card is there and is seen by my BB Storm. Media > Explore
    I have removed and reinstalled the card.
    On the desktop I have tried Explore as well as Disk Management and nothing shows up for the Media Card although the Blackberry itself is present.
    Please help.

    Hi there!
    Give this KB a try perhaps?
    KB19717 The BlackBerry smartphone is not detected as a USB Mass Storage Device when connected to a computer
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • All of a sudden when i try to attach an iphoto to an email or facebook i get a message that say i need  i photo 5 or later and my pictures are not available

    First I have Mac OSX 10.6.8
    I photo 8.1.2
    All of a sudden when I attempt to download a photo from Iphoto to an email attachment or to facebook, I get a message that says I need to :
    "open Iphoto 5 or later to see photos from your Iphoto library in this list" it shows in light grey.
    AS I mentioned above, I have 8.1.2 and my photos are all available when I go to the photo app.
    I read to delete iphoto from the library which i did but that didn't help and maybe was a mistake? And if it was how do I fix that?
    I have searched the web to no resolve. I also see that I do not have the latest version of iphoto but when I check for updates it says there are none available.
    What happened and how can I fix it! HELP!
    I'm not very computer savvy so I appreciate simple instructions.
    Thank you!

    1. Try reinstall iLIfe 09 from your install disk
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List* there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    *Sometimes iPhoto is not visible on the Purchases List. it may be hidden. See this article for details on how to unhide it.
    http://support.apple.com/kb/HT4928
    One question often asked: Will I lose my Photos if I reinstall?
    iPhoto the application and the iPhoto Library are two different parts of the iPhoto programme. So, reinstalling the app should not affect the Library. BUT you should always have a back up before doing this kind of work. Always.
    If that fails, then you're reinstalling the OS.

  • "Reduce Motion" and "Dynamic wallpaper" were not available in my iPhone 4 after iOS7 update

    I updated my iPhone 4 today morning, and could not find the "Redcue Motion" option at "Settings>>General>>Accessabilty" and also the "Dynamic Wallpaper" option in the "Wallpapers & Brightness" opitons.
    I am sure "AirDrop" is not available for iPhone 4, can any one help me with this problem.
    Jena

    Thanks snozdop, can you please help me with any reference to iOS 7 features that are supported in iPhone 4. there is no such proper reference I could find and driving me crazy.
    May be I should've done my homeworks before updating to iOS 7.
    Jena

  • I update to OS X and now iPhoto is not available

    I update to OS X and now iPhoto is not available

    In what  way is iPhoto not available? Does it show as crossed out?
    Then you are running an iPhoto version that needs updating or upgrading for compatibility with MAvericks.
    Depending on your previous version you need to buy an upgrade or can update for free from the appStore. See Old Toad's list of compatible versions at this link: 
      Re: Hi! I am trying to update my iPhoto; however whenever I attempt it says that this update is not avalable for this Apple ID either because it was bought by a different user or the item was refunded or cancelled. What do I do?

  • Imac taking more time than usual to boot and Bluetooth functionality is not available

    My IMac (21" 10.9.1 OS X 2.5GHZ Intel Core i5) is taking much time to boot. I am seeing this happening from past one week. I am also facing Bluetooth issue. My bluetooth Keyboard and Mouse are not working. So I had to connect with normal USB Keyboard and Mouse and when I logged in, I am able to see that the bluetooth functionality is disabled. It is saying Bluetooth not available.
    I tried to do Repair Disk permissions (on Disk Utility) and also tried PRAM reset. Both did not work.
    Do anyone faced the same isse? Question here is.
    1) Can anyone help me to resolve this issue?.
    2) What caused this issue all of a sudden, I dont remember installing any softwares recently.
    Thanks in advance.

    Hi,
    Below are the details, that I have taken from Etrecheck. Can you pls have a look into this..
    Hardware Information:
              iMac (21.5-inch, Mid 2011)
              iMac - model: iMac12,1
              1 2.5 GHz Intel Core i5 CPU: 4 cores
              4 GB RAM
    Video Information:
              AMD Radeon HD 6750M - VRAM: 512 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 0:6:52
    Disk Information:
              ST3500418AS disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Mcintosh (disk0s2) /: 499.25 GB (61.48 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              OPTIARC DVD RW AD-5690H 
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              USB USB Keyboard
              DragonRise Inc.   Generic   USB  Joystick  
              Logitech USB Optical Mouse
              Apple Computer, Inc. IR Receiver
              Apple Internal Memory Card Reader
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.orderedbytes.driver.CMUSBDevices          (4.6.0 - SDK 10.6)
              com.orderedbytes.driver.ControllerMateFamily          (4.6.0 - SDK 10.6)
    Startup Items:
              HWNetMgr: Path: /Library/StartupItems/HWNetMgr
              HWPortDetect: Path: /Library/StartupItems/HWPortDetect
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
              [System] com.oracle.java.JavaUpdateHelper.plist 3rd-Party support link
    Launch Agents:
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
              [System] com.orderedbytes.ControllerMateHelper.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] com.facebook.videochat.[redacted].plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              USBOverdriveHelper
              VMware Fusion Start Menu
    Internet Plug-ins:
              FlashPlayer-10.6: Version: 11.9.900.117 - SDK 10.6 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flash Player: Version: 11.9.900.117 - SDK 10.6 Outdated! Update
              QuickTime Plugin: Version: 7.7.3
              o1dbrowserplugin: Version: 5.1.4.17398 3rd-Party support link
              SharePointBrowserPlugin: Version: 14.0.0 3rd-Party support link
              npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 3rd-Party support link
              googletalkbrowserplugin: Version: 5.1.4.17398 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 45 Outdated! Update
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    User Internet Plug-ins:
              Unity Web Player: Version: UnityPlayer version 2.6.1f3 3rd-Party support link
              RealPlayer Plugin: Version: Unknown
              Google Earth Web Plug-in: Version: 7.1 3rd-Party support link
    3rd Party Preference Panes:
              Flash Player  3rd-Party support link
              Java  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              Wondershare Helper Compact:          Version: 2.2.6.0 - SDK 10.5 3rd-Party support link
                        /Applications/Wondershare Helper compact/Wondershare Helper Compact.app
              PwnageTool:          Version: 5.1.1 - SDK 10.4 3rd-Party support link
                        /Users/Shared/Sowndar/iPhone/PwnageTool.app
              VLC:          Version: 2.0.1 - SDK 10.5 3rd-Party support link
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                   6%          mds
                   3%          mds_stores
                   0%          EtreCheck
                   0%          WindowServer
                   0%          SystemUIServer
    Top Processes by Memory:
              143 MB          com.apple.IconServicesAgent
              102 MB          mds_stores
              90 MB          softwareupdated
              70 MB          sandboxd
              61 MB          com.apple.WebKit.WebContent
    Virtual Memory Information:
              548 MB          Free RAM
              1.53 GB          Active RAM
              1.12 GB          Inactive RAM
              826 MB          Wired RAM
              1.53 GB          Page-ins
              0 B          Page-outs

  • DVD will not play and states "supported disk not available" and makes a weird noise and then ejects the dvd

    My MacbookPro is only 5 months old and in really good condition. The only problem I am encountering is that when I insert any type of dvd disc, it starts to make this weird grinding noise that goes eeee-eeee, and then does that a couple of times and then the disc ejects on its own. When i try to play it with idvd, it does the same noise thing and then iDvd state "supported disk not available". The dvd does not even read on the computer.

    If only five months old it is still under warranty. Take it back.

  • Visual C++ 2010 IntelliSense and browsing information is not available

    Hello, I've just intalled visual studio 2010 and faced the issue with C++ projects: when I create a new console application or win32 project I see the message:
    "An error occurred while creating or opening C++ browsing database file z:\test\test.sdf. IntelliSense and browsing information will not be available for C++ projects.
    Ensure that Microsoft SQL Server Compact 3.5 is installed and that no other applications are accessing the file. If this problem persists, delete the file and reopen the solution".
    In the list of programs I see SQL Server Compact 3.5 SP2 ENU and SQL Server Compact 3.5 x64 ENU installed:
     And .sdf file doesn't exist so it is nothing to delete or share with another application. I've already tried to repair Visual Studio via control panel, but the problem still persists.
    I'm using Windows 7 Ultimate x64 build 7600 and visual studio 2010 ultimate x86.

    Hi Lanamelach,
    It is support to work. I don’t believe it is an issue with SQL server installation. One thing I’ m not clear is what your “z”
    folder is. Does this desk need additional account rights (e.g. administrator) to access? Try to run your vs2010 as Administrator or create a new object to any other local folder.
    Cheers
    Yi Feng Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

Maybe you are looking for

  • Satellite U300 connected to TV - Non supported video format

    I am using Toshiba Satellite U300-15q and it has a vga output so i bought a cable and a box that transfers te analogue signal of vga to digital of hdmi so that i can connect it to my 32' TV Sony make. But if i connect it it says on the tv in yellow l

  • Changing Student Header status in Student file

    Hi, I want to change the header status of student in student file wrt to the reason of cancellations assigned during de-registration. I have created student status and cancellation reasons. Assigned these to RW01 activity. This activity is assigned t

  • AP not joining our vWLC

    Hello, We're currently using a new Virtual WLC and we have over 45 AP's connected to it without any issues.  Recently, one of our AP's started having issues joining the controller and I'm not sure why not.  On the controller it says... Reason for las

  • How to order panoramic prints from iphoto online?

    How can I order panoramic prints from iphoto  online?  The choices are only 4x6  5x7  etc

  • DVD Icon not appearing

    Hello All Can anyone tell me why my DVD Icon does not automatically appear on my desktop after shutting my computer down (MBP) with the DVD left in it. I am having to eject and reinsert the DVD for it to appear back on the screen. Not a major issue b