Changeset 38239 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d
- Timestamp:
- Jul 29, 2011 11:13:15 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73220
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/surface.c
r38230 r38239 1797 1797 1798 1798 GL_EXTCALL(glGenBuffersARB(1, &This->pbo)); 1799 #ifndef VBOX_WITH_WDDM 1799 1800 error = glGetError(); 1800 1801 if(This->pbo == 0 || error != GL_NO_ERROR) { 1801 1802 ERR("Failed to bind the PBO with error %s (%#x)\n", debug_glerror(error), error); 1802 1803 } 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 1803 1810 1804 1811 TRACE("Attaching pbo=%#x to (%p)\n", This->pbo, This);
Note:
See TracChangeset
for help on using the changeset viewer.