Deleted Added
full compact
scvgarndr.c (66834) scvgarndr.c (78161)
1/*-
2 * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/syscons/scvgarndr.c 66834 2000-10-08 21:34:00Z phk $
26 * $FreeBSD: head/sys/dev/syscons/scvgarndr.c 78161 2001-06-13 10:58:39Z peter $
27 */
28
29#include "opt_syscons.h"
30#include "opt_vga.h"
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>

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

75#endif /* SC_PIXEL_MODE */
76
77#ifndef SC_NO_MODE_CHANGE
78static vr_draw_border_t vga_grborder;
79#endif
80
81static void vga_nop(scr_stat *scp, ...);
82
27 */
28
29#include "opt_syscons.h"
30#include "opt_vga.h"
31
32#include <sys/param.h>
33#include <sys/systm.h>
34#include <sys/kernel.h>

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

75#endif /* SC_PIXEL_MODE */
76
77#ifndef SC_NO_MODE_CHANGE
78static vr_draw_border_t vga_grborder;
79#endif
80
81static void vga_nop(scr_stat *scp, ...);
82
83static struct linker_set vga_set;
84
85static sc_rndr_sw_t txtrndrsw = {
86 vga_txtclear,
87 vga_txtborder,
88 vga_txtdraw,
89 vga_txtcursor_shape,
90 vga_txtcursor,
91 vga_txtblink,
92 (vr_set_mouse_t *)vga_nop,

--- 786 unchanged lines hidden ---
83static sc_rndr_sw_t txtrndrsw = {
84 vga_txtclear,
85 vga_txtborder,
86 vga_txtdraw,
87 vga_txtcursor_shape,
88 vga_txtcursor,
89 vga_txtblink,
90 (vr_set_mouse_t *)vga_nop,

--- 786 unchanged lines hidden ---