1221345Sdim/*-
2218885Sdim * Copyright (c) 2013 The FreeBSD Foundation
3218885Sdim * All rights reserved.
4218885Sdim *
5218885Sdim * This software was developed by Aleksandr Rybalko under sponsorship from the
6218885Sdim * FreeBSD Foundation.
7218885Sdim *
8218885Sdim * Redistribution and use in source and binary forms, with or without
9218885Sdim * modification, are permitted provided that the following conditions
10218885Sdim * are met:
11218885Sdim * 1. Redistributions of source code must retain the above copyright
12218885Sdim *    notice, this list of conditions and the following disclaimer.
13218885Sdim * 2. Redistributions in binary form must reproduce the above copyright
14218885Sdim *    notice, this list of conditions and the following disclaimer in the
15218885Sdim *    documentation and/or other materials provided with the distribution.
16218885Sdim *
17218885Sdim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18218885Sdim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19218885Sdim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20218885Sdim * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21218885Sdim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22218885Sdim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23218885Sdim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24218885Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25218885Sdim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26218885Sdim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27218885Sdim * SUCH DAMAGE.
28218885Sdim */
29218885Sdim
30218885Sdim#include <sys/cdefs.h>
31218885Sdim__FBSDID("$FreeBSD: releng/11.0/sys/dev/vt/font/vt_mouse_cursor.c 278673 2015-02-13 13:55:38Z danfe $");
32218885Sdim
33218885Sdim#include <dev/vt/vt.h>
34218885Sdim
35218885Sdim#ifndef SC_NO_CUTPASTE
36218885Sdimstruct vt_mouse_cursor vt_default_mouse_pointer = {
37218885Sdim	.map = {
38218885Sdim		0x00, 0x00, /* "__        " */
39218885Sdim		0x40, 0x00, /* "_*_       " */
40218885Sdim		0x60, 0x00, /* "_**_      " */
41218885Sdim		0x70, 0x00, /* "_***_     " */
42218885Sdim		0x78, 0x00, /* "_****_    " */
43218885Sdim		0x7c, 0x00, /* "_*****_   " */
44218885Sdim		0x7e, 0x00, /* "_******_  " */
45218885Sdim		0x7f, 0x00, /* "_*******_ " */
46218885Sdim		0x7f, 0x80, /* "_********_" */
47218885Sdim		0x7c, 0x00, /* "_*****____" */
48218885Sdim		0x6c, 0x00, /* "_**_**_   " */
49218885Sdim		0x46, 0x00, /* "_*_ _**_  " */
50218885Sdim		0x06, 0x00, /* "__  _**_  " */
51218885Sdim		0x03, 0x00, /* "     _**_ " */
52218885Sdim		0x03, 0x00, /* "     _**_ " */
53218885Sdim		0x00, 0x00, /* "      __  " */
54218885Sdim	},
55218885Sdim	.mask = {
56218885Sdim		0xc0, 0x00, /* "__        " */
57218885Sdim		0xe0, 0x00, /* "___       " */
58218885Sdim		0xf0, 0x00, /* "____      " */
59218885Sdim		0xf8, 0x00, /* "_____     " */
60218885Sdim		0xfc, 0x00, /* "______    " */
61218885Sdim		0xfe, 0x00, /* "_______   " */
62218885Sdim		0xff, 0x00, /* "________  " */
63218885Sdim		0xff, 0x80, /* "_________ " */
64218885Sdim		0xff, 0xc0, /* "__________" */
65218885Sdim		0xff, 0xc0, /* "__________" */
66218885Sdim		0xfe, 0x00, /* "_______   " */
67218885Sdim		0xef, 0x00, /* "___ ____  " */
68218885Sdim		0xcf, 0x00, /* "__  ____  " */
69218885Sdim		0x07, 0x80, /* "     ____ " */
70218885Sdim		0x07, 0x80, /* "     ____ " */
71218885Sdim		0x03, 0x00, /* "      __  " */
72218885Sdim	},
73218885Sdim	.width = 10,
74218885Sdim	.height = 16,
75218885Sdim};
76218885Sdim#endif
77218885Sdim