Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
58ed14eb
Commit
58ed14eb
authored
Sep 28, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Oct 29, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Honor pbos when downloading a compressed texture.
parent
f6637cae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
surface.c
dlls/wined3d/surface.c
+11
-2
No files found.
dlls/wined3d/surface.c
View file @
58ed14eb
...
...
@@ -47,8 +47,17 @@ static void surface_download_data(IWineD3DSurfaceImpl *This) {
TRACE
(
"(%p) : Calling glGetCompressedTexImageARB level %d, format %#x, type %#x, data %p
\n
"
,
This
,
This
->
glDescription
.
level
,
This
->
glDescription
.
glFormat
,
This
->
glDescription
.
glType
,
This
->
resource
.
allocatedMemory
);
GL_EXTCALL
(
glGetCompressedTexImageARB
(
This
->
glDescription
.
target
,
This
->
glDescription
.
level
,
This
->
resource
.
allocatedMemory
));
checkGLcall
(
"glGetCompressedTexImageARB()"
);
if
(
This
->
Flags
&
SFLAG_PBO
)
{
GL_EXTCALL
(
glBindBufferARB
(
GL_PIXEL_PACK_BUFFER_ARB
,
This
->
pbo
));
checkGLcall
(
"glBindBufferARB"
);
GL_EXTCALL
(
glGetCompressedTexImageARB
(
This
->
glDescription
.
target
,
This
->
glDescription
.
level
,
NULL
));
checkGLcall
(
"glGetCompressedTexImageARB()"
);
GL_EXTCALL
(
glBindBufferARB
(
GL_PIXEL_PACK_BUFFER_ARB
,
0
));
checkGLcall
(
"glBindBufferARB"
);
}
else
{
GL_EXTCALL
(
glGetCompressedTexImageARB
(
This
->
glDescription
.
target
,
This
->
glDescription
.
level
,
This
->
resource
.
allocatedMemory
));
checkGLcall
(
"glGetCompressedTexImageARB()"
);
}
}
}
else
{
void
*
mem
;
...
...
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