mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-misc/directvnc: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3649
This commit is contained in:
committed by
David Seifert
parent
3e432d7887
commit
f16b15fd46
@@ -1,77 +0,0 @@
|
||||
*** dfb.c 2003-01-31 03:51:59.000000000 -0500
|
||||
--- dfb-new.c 2005-07-10 15:12:37.000000000 -0400
|
||||
***************
|
||||
*** 24,34 ****
|
||||
/* DirectFB interfaces needed */
|
||||
IDirectFB *dfb = NULL;
|
||||
IDirectFBSurface *primary;
|
||||
IDirectFBDisplayLayer *layer;
|
||||
IDirectFBInputDevice *keyboard;
|
||||
! IDirectFBInputDevice *mouse;
|
||||
IDirectFBEventBuffer *input_buffer;
|
||||
DFBResult err;
|
||||
DFBSurfaceDescription dsc;
|
||||
DFBCardCapabilities caps;
|
||||
DFBDisplayLayerConfig layer_config;
|
||||
--- 24,34 ----
|
||||
/* DirectFB interfaces needed */
|
||||
IDirectFB *dfb = NULL;
|
||||
IDirectFBSurface *primary;
|
||||
IDirectFBDisplayLayer *layer;
|
||||
IDirectFBInputDevice *keyboard;
|
||||
! /* IDirectFBInputDevice *mouse; */
|
||||
IDirectFBEventBuffer *input_buffer;
|
||||
DFBResult err;
|
||||
DFBSurfaceDescription dsc;
|
||||
DFBCardCapabilities caps;
|
||||
DFBDisplayLayerConfig layer_config;
|
||||
***************
|
||||
*** 64,74 ****
|
||||
dsc.pixelformat = DSPF_RGB16;
|
||||
DFBCHECK(dfb->CreateSurface(dfb, &dsc, &primary ));
|
||||
primary->GetSize (primary, &opt.client.width, &opt.client.height);
|
||||
|
||||
DFBCHECK(dfb->GetInputDevice( dfb, DIDID_KEYBOARD, &keyboard ));
|
||||
! DFBCHECK(dfb->GetInputDevice( dfb, DIDID_MOUSE, &mouse ));
|
||||
DFBCHECK (dfb->CreateInputEventBuffer (dfb, DICAPS_ALL, DFB_TRUE, &input_buffer));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
--- 64,74 ----
|
||||
dsc.pixelformat = DSPF_RGB16;
|
||||
DFBCHECK(dfb->CreateSurface(dfb, &dsc, &primary ));
|
||||
primary->GetSize (primary, &opt.client.width, &opt.client.height);
|
||||
|
||||
DFBCHECK(dfb->GetInputDevice( dfb, DIDID_KEYBOARD, &keyboard ));
|
||||
! /* DFBCHECK(dfb->GetInputDevice( dfb, DIDID_MOUSE, &mouse )); */
|
||||
DFBCHECK (dfb->CreateInputEventBuffer (dfb, DICAPS_ALL, DFB_TRUE, &input_buffer));
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
***************
|
||||
*** 78,88 ****
|
||||
dfb_deinit()
|
||||
{
|
||||
primary->Release( primary );
|
||||
input_buffer->Release(input_buffer);
|
||||
keyboard->Release( keyboard );
|
||||
! mouse->Release( mouse );
|
||||
layer->Release( layer );
|
||||
dfb->Release( dfb );
|
||||
}
|
||||
|
||||
void
|
||||
--- 78,88 ----
|
||||
dfb_deinit()
|
||||
{
|
||||
primary->Release( primary );
|
||||
input_buffer->Release(input_buffer);
|
||||
keyboard->Release( keyboard );
|
||||
! /* mouse->Release( mouse ); */
|
||||
layer->Release( layer );
|
||||
dfb->Release( dfb );
|
||||
}
|
||||
|
||||
void
|
||||
Reference in New Issue
Block a user