Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
f9002c26
Commit
f9002c26
authored
Sep 15, 2007
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Sep 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Don't create a pbo for system memory surfaces.
parent
ea52235f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
surface.c
dlls/wined3d/surface.c
+3
-3
No files found.
dlls/wined3d/surface.c
View file @
f9002c26
...
...
@@ -758,10 +758,10 @@ static HRESULT WINAPI IWineD3DSurfaceImpl_LockRect(IWineD3DSurface *iface, WINED
This
->
Flags
&=
~
SFLAG_INSYSMEM
;
/* This is the marker that surface data has to be downloaded */
}
/* Create a PBO for dynamicly locked surfaces but don't do it for converted or non-pow2 surfaces */
if
(
GL_SUPPORT
(
ARB_PIXEL_BUFFER_OBJECT
)
&&
(
This
->
Flags
&
SFLAG_DYNLOCK
)
&&
!
(
This
->
Flags
&
(
SFLAG_PBO
|
SFLAG_CONVERTED
|
SFLAG_NONPOW2
)))
{
/* Create a PBO for dynamicly locked surfaces but don't do it for converted or non-pow2 surfaces.
* Also don't create a PBO for systemmem surfaces. */
if
(
GL_SUPPORT
(
ARB_PIXEL_BUFFER_OBJECT
)
&&
(
This
->
Flags
&
SFLAG_DYNLOCK
)
&&
!
(
This
->
Flags
&
(
SFLAG_PBO
|
SFLAG_CONVERTED
|
SFLAG_NONPOW2
))
&&
(
This
->
resource
.
pool
!=
WINED3DPOOL_SYSTEMMEM
))
{
GLenum
error
;
ENTER_GL
();
GL_EXTCALL
(
glGenBuffersARB
(
1
,
&
This
->
pbo
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment