wined3d: Allow SetCursorProperties on existing cursor

Stefan Dösinger stefandoesinger at gmx.at
Sun Mar 11 16:34:40 CDT 2007


Am Sonntag 11 März 2007 21:08 schrieb Erich Hoover:
> Yeah, that would make more sense wouldn't it :)  Please see attached patch.
If you do it that way, you can remove the PreLoad, LockRect the surface(with 
WINED3DLOCK_READONLY), use glTexImage2D to load This->cursorTexture and then 
Unlock the surface. This saves uploading -> downloading -> uploading. If you 
use that way, please remove SFLAG_FORCELOAD too.

You should make sure that a correct gl texture unit is activated before 
loading This->cursorTexture with GL_EXTCALL(glActiveTextureARB(X)); Search 
through the code how that is done, you have to make sure that 
glActiveTextureARB is supported before using it. You don't have to enable 
GL_TEXTURE_2D to my knowledge to call glTexImage2D, but you have to restore 
the originally bound texture or dirtify the sampler you 
modify(IWineD3DDeviceImpl_MarkStateDirty(This, SAMPLER(X)); where X is the 
unit you selected before. (X = 0 is prefered).
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
Url : http://www.winehq.org/pipermail/wine-devel/attachments/20070311/ed8ea887/attachment.pgp


More information about the wine-devel mailing list