VirtualBox

Ignore:
Timestamp:
Jul 29, 2011 11:13:15 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
73220
Message:

wddm/wine: fix pbo creation err handling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/surface.c

    r38230 r38239  
    17971797
    17981798        GL_EXTCALL(glGenBuffersARB(1, &This->pbo));
     1799#ifndef VBOX_WITH_WDDM
    17991800        error = glGetError();
    18001801        if(This->pbo == 0 || error != GL_NO_ERROR) {
    18011802            ERR("Failed to bind the PBO with error %s (%#x)\n", debug_glerror(error), error);
    18021803        }
     1804#else
     1805        if(This->pbo == 0) {
     1806            error = glGetError();
     1807            ERR("Failed to bind the PBO with error %s (%#x)\n", debug_glerror(error), error);
     1808        }
     1809#endif
    18031810
    18041811        TRACE("Attaching pbo=%#x to (%p)\n", This->pbo, This);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette