10Sstevel@tonic-gate/*-
20Sstevel@tonic-gate * Copyright (c) 2013 The FreeBSD Foundation
30Sstevel@tonic-gate * All rights reserved.
40Sstevel@tonic-gate *
50Sstevel@tonic-gate * This software was developed by Aleksandr Rybalko under sponsorship from the
612428SSonam.Gupta@Sun.COM * FreeBSD Foundation.
712428SSonam.Gupta@Sun.COM *
80Sstevel@tonic-gate * Redistribution and use in source and binary forms, with or without
90Sstevel@tonic-gate * modification, are permitted provided that the following conditions
100Sstevel@tonic-gate * are met:
110Sstevel@tonic-gate * 1. Redistributions of source code must retain the above copyright
120Sstevel@tonic-gate *    notice, this list of conditions and the following disclaimer.
130Sstevel@tonic-gate * 2. Redistributions in binary form must reproduce the above copyright
140Sstevel@tonic-gate *    notice, this list of conditions and the following disclaimer in the
150Sstevel@tonic-gate *    documentation and/or other materials provided with the distribution.
160Sstevel@tonic-gate *
170Sstevel@tonic-gate * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
180Sstevel@tonic-gate * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
190Sstevel@tonic-gate * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
200Sstevel@tonic-gate * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
210Sstevel@tonic-gate * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2212428SSonam.Gupta@Sun.COM * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
230Sstevel@tonic-gate * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
240Sstevel@tonic-gate * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
250Sstevel@tonic-gate * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
260Sstevel@tonic-gate * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
270Sstevel@tonic-gate * SUCH DAMAGE.
280Sstevel@tonic-gate */
290Sstevel@tonic-gate
300Sstevel@tonic-gate#include <sys/cdefs.h>
310Sstevel@tonic-gate__FBSDID("$FreeBSD: releng/10.2/sys/dev/vt/font/vt_mouse_cursor.c 271128 2014-09-04 20:18:08Z emaste $");
320Sstevel@tonic-gate
330Sstevel@tonic-gate#include <dev/vt/vt.h>
340Sstevel@tonic-gate
350Sstevel@tonic-gate#ifndef SC_NO_CUTPASTE
360Sstevel@tonic-gatestruct vt_mouse_cursor vt_default_mouse_pointer = {
370Sstevel@tonic-gate	.map = {
380Sstevel@tonic-gate		0x00, /* "__      " */
390Sstevel@tonic-gate		0x40, /* "_*_     " */
400Sstevel@tonic-gate		0x60, /* "_**_    " */
410Sstevel@tonic-gate		0x70, /* "_***_   " */
420Sstevel@tonic-gate		0x78, /* "_****_  " */
430Sstevel@tonic-gate		0x7c, /* "_*****_ " */
440Sstevel@tonic-gate		0x7e, /* "_******_" */
450Sstevel@tonic-gate		0x68, /* "_**_****" */
460Sstevel@tonic-gate		0x4c, /* "_*__**_ " */
470Sstevel@tonic-gate		0x0c, /* " _ _**_ " */
480Sstevel@tonic-gate		0x06, /* "    _**_" */
490Sstevel@tonic-gate		0x06, /* "    _**_" */
500Sstevel@tonic-gate		0x00, /* "    ____" */
510Sstevel@tonic-gate	},
520Sstevel@tonic-gate	.mask = {
530Sstevel@tonic-gate		0xc0, /* "__      " */
540Sstevel@tonic-gate		0xe0, /* "___     " */
550Sstevel@tonic-gate		0xf0, /* "____    " */
5612428SSonam.Gupta@Sun.COM		0xf8, /* "_____   " */
570Sstevel@tonic-gate		0xfc, /* "______  " */
580Sstevel@tonic-gate		0xfe, /* "_______ " */
590Sstevel@tonic-gate		0xff, /* "________" */
600Sstevel@tonic-gate		0xff, /* "________" */
610Sstevel@tonic-gate		0xfe, /* "_______ " */
620Sstevel@tonic-gate		0x5e, /* " _ ____ " */
6312428SSonam.Gupta@Sun.COM		0x0f, /* "    ____" */
640Sstevel@tonic-gate		0x0f, /* "    ____" */
650Sstevel@tonic-gate		0x0f, /* "    ____" */
660Sstevel@tonic-gate	},
670Sstevel@tonic-gate	.width = 8,
680Sstevel@tonic-gate	.height = 13,
690Sstevel@tonic-gate};
700Sstevel@tonic-gate#endif
710Sstevel@tonic-gate