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
e64a2fdf
Commit
e64a2fdf
authored
Feb 16, 2006
by
Roderick Colenbrander
Committed by
Alexandre Julliard
Feb 16, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Set the texture size for d3d8.
parent
3ab7a987
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
device.c
dlls/wined3d/device.c
+7
-0
No files found.
dlls/wined3d/device.c
View file @
e64a2fdf
...
...
@@ -696,6 +696,13 @@ HRESULT WINAPI IWineD3DDeviceImpl_CreateSurface(IWineD3DDevice *iface, UINT Wid
}
}
/* D3D8 doesn't use the opengl capability code from WineD3D and because of this the maximum texture size isn't set. */
if
(((
IWineD3DImpl
*
)
This
->
wineD3D
)
->
dxVersion
==
8
&&
GL_LIMITS
(
texture_size
)
==
0
)
{
int
gl_max
;
glGetIntegerv
(
GL_MAX_TEXTURE_SIZE
,
&
gl_max
);
GL_LIMITS
(
texture_size
)
=
gl_max
;
}
/** Check against the maximum texture sizes supported by the video card **/
if
(
pow2Width
>
GL_LIMITS
(
texture_size
)
||
pow2Height
>
GL_LIMITS
(
texture_size
))
{
/* one of three options
...
...
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