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
c7da79de
Commit
c7da79de
authored
Jul 29, 2008
by
H. Verbeet
Committed by
Alexandre Julliard
Jul 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: FBO texture == drawable handling is already handled in LoadLocation().
parent
9b47996b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
15 deletions
+0
-15
drawprim.c
dlls/wined3d/drawprim.c
+0
-15
No files found.
dlls/wined3d/drawprim.c
View file @
c7da79de
...
...
@@ -922,7 +922,6 @@ void drawPrimitive(IWineD3DDevice *iface,
int
minIndex
)
{
IWineD3DDeviceImpl
*
This
=
(
IWineD3DDeviceImpl
*
)
iface
;
IWineD3DSwapChain
*
swapchain
;
IWineD3DSurfaceImpl
*
target
;
int
i
;
...
...
@@ -934,27 +933,13 @@ void drawPrimitive(IWineD3DDevice *iface,
/* TODO: Only do all that if we're going to change anything */
if
(
target
/*&& target->Flags & (SFLAG_INTEXTURE | SFLAG_INSYSMEM)*/
)
{
swapchain
=
NULL
;
if
(
i
==
0
)
{
IWineD3DSurface_GetContainer
((
IWineD3DSurface
*
)
target
,
&
IID_IWineD3DSwapChain
,
(
void
**
)
&
swapchain
);
/* Need the surface in the drawable! */
IWineD3DSurface_LoadLocation
((
IWineD3DSurface
*
)
target
,
SFLAG_INDRAWABLE
,
NULL
);
/* TODO: Move fbo logic to ModifyLocation */
IWineD3DSurface_ModifyLocation
((
IWineD3DSurface
*
)
target
,
SFLAG_INDRAWABLE
,
TRUE
);
if
(
swapchain
)
{
/* Onscreen target. Invalidate system memory copy and texture copy */
IWineD3DSwapChain_Release
(
swapchain
);
}
else
if
(
wined3d_settings
.
offscreen_rendering_mode
==
ORM_FBO
)
{
/* FBO offscreen target. Texture == Drawable */
target
->
Flags
|=
SFLAG_INTEXTURE
;
}
}
else
{
/* Must be an fbo render target */
IWineD3DSurface_ModifyLocation
((
IWineD3DSurface
*
)
target
,
SFLAG_INDRAWABLE
,
TRUE
);
target
->
Flags
|=
SFLAG_INTEXTURE
;
}
}
}
...
...
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