Deleted Added
full compact
vt_mouse_cursor.c (259016) vt_mouse_cursor.c (262861)
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Aleksandr Rybalko under sponsorship from the
6 * FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 14 unchanged lines hidden (view full) ---

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2013 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Aleksandr Rybalko under sponsorship from the
6 * FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 14 unchanged lines hidden (view full) ---

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/vt/font/vt_mouse_cursor.c 257969 2013-11-11 11:46:41Z ray $");
31__FBSDID("$FreeBSD: stable/10/sys/dev/vt/font/vt_mouse_cursor.c 262861 2014-03-06 18:30:56Z jhb $");
32
33#include <dev/vt/vt.h>
34
32
33#include <dev/vt/vt.h>
34
35#ifndef SC_NO_CUTPASTE
35struct mouse_cursor vt_default_mouse_pointer = {
36 .map = {
37 0x00, /* "__ " */
38 0x40, /* "_*_ " */
39 0x60, /* "_**_ " */
40 0x70, /* "_***_ " */
41 0x78, /* "_****_ " */
42 0x7c, /* "_*****_ " */

--- 18 unchanged lines hidden (view full) ---

61 0x1e, /* " ____ " */
62 0x0f, /* " ____" */
63 0x0f, /* " ____" */
64 0x0f, /* " ____" */
65 },
66 .w = 8,
67 .h = 13,
68};
36struct mouse_cursor vt_default_mouse_pointer = {
37 .map = {
38 0x00, /* "__ " */
39 0x40, /* "_*_ " */
40 0x60, /* "_**_ " */
41 0x70, /* "_***_ " */
42 0x78, /* "_****_ " */
43 0x7c, /* "_*****_ " */

--- 18 unchanged lines hidden (view full) ---

62 0x1e, /* " ____ " */
63 0x0f, /* " ____" */
64 0x0f, /* " ____" */
65 0x0f, /* " ____" */
66 },
67 .w = 8,
68 .h = 13,
69};
70#endif