xref: /freebsd/sys/dev/vt/font/vt_mouse_cursor.c (revision 4d846d26)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2013 The FreeBSD Foundation
5  *
6  * This software was developed by Aleksandr Rybalko under sponsorship from the
7  * FreeBSD Foundation.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30 
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33 
34 #include <dev/vt/vt.h>
35 
36 #ifndef SC_NO_CUTPASTE
37 struct vt_mouse_cursor vt_default_mouse_pointer = {
38 	.map = {
39 		0x00, 0x00, /* "__        " */
40 		0x40, 0x00, /* "_*_       " */
41 		0x60, 0x00, /* "_**_      " */
42 		0x70, 0x00, /* "_***_     " */
43 		0x78, 0x00, /* "_****_    " */
44 		0x7c, 0x00, /* "_*****_   " */
45 		0x7e, 0x00, /* "_******_  " */
46 		0x7f, 0x00, /* "_*******_ " */
47 		0x7f, 0x80, /* "_********_" */
48 		0x7c, 0x00, /* "_*****____" */
49 		0x6c, 0x00, /* "_**_**_   " */
50 		0x46, 0x00, /* "_*_ _**_  " */
51 		0x06, 0x00, /* "__  _**_  " */
52 		0x03, 0x00, /* "     _**_ " */
53 		0x03, 0x00, /* "     _**_ " */
54 		0x00, 0x00, /* "      __  " */
55 	},
56 	.mask = {
57 		0xc0, 0x00, /* "__        " */
58 		0xe0, 0x00, /* "___       " */
59 		0xf0, 0x00, /* "____      " */
60 		0xf8, 0x00, /* "_____     " */
61 		0xfc, 0x00, /* "______    " */
62 		0xfe, 0x00, /* "_______   " */
63 		0xff, 0x00, /* "________  " */
64 		0xff, 0x80, /* "_________ " */
65 		0xff, 0xc0, /* "__________" */
66 		0xff, 0xc0, /* "__________" */
67 		0xfe, 0x00, /* "_______   " */
68 		0xef, 0x00, /* "___ ____  " */
69 		0xcf, 0x00, /* "__  ____  " */
70 		0x07, 0x80, /* "     ____ " */
71 		0x07, 0x80, /* "     ____ " */
72 		0x03, 0x00, /* "      __  " */
73 	},
74 	.width = 10,
75 	.height = 16,
76 };
77 #endif
78