📄 s3cursor.h
字号:
/* $XFree86: xc/programs/Xserver/hw/xfree86/accel/s3/s3Cursor.h,v 3.2 1996/12/27 06:56:20 dawes Exp $ *//* $XConsortium: s3Cursor.h /main/2 1995/11/12 19:05:50 kaleb $ */extern Bool s3BlockCursor;extern Bool s3ReloadCursor;#define BLOCK_CURSOR s3BlockCursor = TRUE;/* BL 0815150096: * UNBLOCK_CURSOR is called at the end of every graphics function, mem_barrier() * guarantees update of regs and memory (on e.g. Alpha) */ #ifndef OSKIT#define UNBLOCK_CURSOR { mem_barrier(); \ if (s3ReloadCursor) \ s3RestoreCursor(s3savepScreen); \ s3BlockCursor = FALSE; \ }#else#define UNBLOCK_CURSOR { mem_barrier(); \ s3BlockCursor = FALSE; } #endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -