fix a minor bug

This commit is contained in:
Vincent Wei
2021-05-05 18:03:10 +08:00
parent 4de7e09c22
commit ac769be3cb
4 changed files with 21 additions and 38 deletions
+2 -1
View File
@@ -2401,8 +2401,9 @@ static void wndDrawNCFrame(MAINWIN* pWin, HDC hdc, const RECT* prcInvalid)
}
#endif
if (fGetDC)
if (fGetDC) {
release_effective_dc (pWin, hdc);
}
}
/* this function is CONTROL safe. */
+1 -1
View File
@@ -1303,7 +1303,7 @@ static void transit_to_layer (CompositorCtxt* ctxt, MG_Layer* to_layer)
}
}
_DBG_PRINTF ("Average time to composite the layers: %u (times: %u)\n", total_time_ms / total_times, total_times);
_WRN_PRINTF ("Average time to composite the layers: %u (times: %u)\n", total_time_ms / total_times, total_times);
}
CompositorOps __mg_fallback_compositor = {
+1 -1
View File
@@ -1843,7 +1843,7 @@ static HWND dskSetActiveZOrderNode (ZORDERINFO* zi, int cli, int idx_znode)
new_hwnd = HWND_OTHERPROC;
}
if (old_active && (nodes [zi->active_win].flags & ZOF_VISIBLE)) {
if (old_active && (nodes [old_active].flags & ZOF_VISIBLE)) {
post_msg_by_znode_p (zi, nodes + old_active,
MSG_NCACTIVATE, FALSE, 0);
post_msg_by_znode_p (zi, nodes + old_active,
+17 -35
View File
@@ -151,7 +151,7 @@ try_again:
if (errno == EINTR)
goto try_again;
else
_DBG_PRINTF ("NEWGAL>PCXVFB: failed to lock sempahore id: %d; pid (%d): %s\n",
_WRN_PRINTF ("NEWGAL>PCXVFB: failed to lock sempahore id: %d; pid (%d): %s\n",
semid, getpid(), strerror (errno));
}
}
@@ -165,7 +165,7 @@ try_again:
if (errno == EINTR)
goto try_again;
else
_DBG_PRINTF ("NEWGAL>PCXVFB: failed to unlock sempahore id: %d; pid (%d): %s\n",
_WRN_PRINTF ("NEWGAL>PCXVFB: failed to unlock sempahore id: %d; pid (%d): %s\n",
semid, getpid(), strerror (errno));
}
}
@@ -243,40 +243,16 @@ static void PCXVFB_DeleteDevice (GAL_VideoDevice *device)
free (device);
}
#if 0 /* deprecated code: call common helpers for shadow screen */
#if 0 // deprecated code
static void PCXVFB_UpdateRects (_THIS, int numrects, GAL_Rect *rects)
{
int i;
RECT bound;
#ifdef WIN32
win_PCXVFbLock ();
#else
shm_lock(semid);
#endif
bound.left = this->hidden->hdr->dirty_rc_l;
bound.top = this->hidden->hdr->dirty_rc_t;
bound.right = this->hidden->hdr->dirty_rc_r;
bound.bottom = this->hidden->hdr->dirty_rc_b;
if (bound.right == -1) bound.right = 0;
if (bound.bottom == -1) bound.bottom = 0;
bound = this->hidden->dirty_rc;
for (i = 0; i < numrects; i++) {
RECT rc;
SetRect (&rc, rects[i].x, rects[i].y,
rects[i].x + rects[i].w, rects[i].y + rects[i].h);
if (IsRectEmpty (&bound))
bound = rc;
else
GetBoundRect (&bound, &bound, &rc);
}
this->hidden->dirty_rc = bound;
shadowScreen_UpdateRects (this, numrects, rects);
#ifdef WIN32
win_PCXVFbUnlock ();
@@ -284,7 +260,7 @@ static void PCXVFB_UpdateRects (_THIS, int numrects, GAL_Rect *rects)
shm_unlock(semid);
#endif
}
#endif /* deprecated code */
#endif // deprecated code
static BOOL PCXVFB_SyncUpdate (_THIS)
{
@@ -519,8 +495,6 @@ static int PCXVFB_VideoInit (_THIS, GAL_PixelFormat *vformat)
listen (__mg_pcxvfb_server_sockfd, 3);
//shm_init_lock(getpid());
if ((pid = fork()) < 0) {
_ERR_PRINTF ("NEWGAL>PCXVFB: fork() error.\n");
}
@@ -650,8 +624,8 @@ static int PCXVFB_VideoInit (_THIS, GAL_PixelFormat *vformat)
GAL_SetError ("NEWGAL>PCXVFB: failed to open tmp file\n");
return -1;
}
fwrite (&shmid, sizeof(int), 1, fp);
fwrite (&semid, sizeof(int), 1, fp);
fclose (fp);
#endif /* _MGRM_PROCESSES */
}
@@ -666,11 +640,16 @@ static int PCXVFB_VideoInit (_THIS, GAL_PixelFormat *vformat)
}
if (fread (&shmid, sizeof(int), 1, fp) < 1) {
GAL_SetError ("NEWGAL>PCXVFB: can't read from tmp file\n");
GAL_SetError ("NEWGAL>PCXVFB: can't read shmid from tmp file\n");
fclose (fp);
return -1;
}
if (fread (&semid, sizeof(int), 1, fp) < 1) {
GAL_SetError ("NEWGAL>PCXVFB: can't read semid from tmp file\n");
fclose (fp);
return -1;
}
fclose(fp);
if (shmid != -1) {
@@ -864,11 +843,14 @@ static void PCXVFB_VideoQuit (_THIS)
munmap (this->hidden->shmrgn, size);
close (fd);
remove (mapFile);
semctl (semid, 0, IPC_RMID);
#else // linux
shmdt (this->hidden->shmrgn);
semctl (semid, 0, IPC_RMID);
#endif
#if defined(_MGRM_PROCESSES)
if (mgIsServer)
#endif
semctl (semid, 0, IPC_RMID);
}
#endif /* _MGGAL_PCXVFB*/