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
9f3e6a20
Commit
9f3e6a20
authored
Jun 09, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Handle unpack row length inside surface_upload_data().
parent
ee6d550b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
surface.c
dlls/wined3d/surface.c
+6
-10
No files found.
dlls/wined3d/surface.c
View file @
9f3e6a20
...
...
@@ -2199,6 +2199,9 @@ static void surface_upload_data(struct wined3d_surface *surface, const struct wi
data
=
NULL
;
}
/* Make sure the correct pitch is used */
glPixelStorei
(
GL_UNPACK_ROW_LENGTH
,
width
);
if
(
format
->
flags
&
WINED3DFMT_FLAG_COMPRESSED
)
{
TRACE
(
"Calling glCompressedTexSubImage2DARB.
\n
"
);
...
...
@@ -2216,6 +2219,9 @@ static void surface_upload_data(struct wined3d_surface *surface, const struct wi
checkGLcall
(
"glTexSubImage2D"
);
}
/* Restore the default pitch */
glPixelStorei
(
GL_UNPACK_ROW_LENGTH
,
0
);
if
(
surface
->
flags
&
SFLAG_PBO
)
{
GL_EXTCALL
(
glBindBufferARB
(
GL_PIXEL_UNPACK_BUFFER_ARB
,
0
));
...
...
@@ -6159,19 +6165,9 @@ HRESULT surface_load_location(struct wined3d_surface *surface, DWORD flag, const
mem
=
surface
->
resource
.
allocatedMemory
;
}
/* Make sure the correct pitch is used */
ENTER_GL
();
glPixelStorei
(
GL_UNPACK_ROW_LENGTH
,
width
);
LEAVE_GL
();
if
(
mem
||
(
surface
->
flags
&
SFLAG_PBO
))
surface_upload_data
(
surface
,
gl_info
,
&
format
,
srgb
,
mem
);
/* Restore the default pitch */
ENTER_GL
();
glPixelStorei
(
GL_UNPACK_ROW_LENGTH
,
0
);
LEAVE_GL
();
if
(
context
)
context_release
(
context
);
/* Don't delete PBO memory */
...
...
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