Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/rasops Protect rasops_copy{rows, cols}() by _RASOPS_P...



details:   https://anonhg.NetBSD.org/src/rev/bebde1facf04
branches:  trunk
changeset: 458615:bebde1facf04
user:      rin <rin%NetBSD.org@localhost>
date:      Sat Aug 03 06:29:52 2019 +0000

description:
Protect rasops_copy{rows,cols}() by _RASOPS_PRIVATE.

diffstat:

 sys/dev/rasops/rasops.h |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r d52ded92f80c -r bebde1facf04 sys/dev/rasops/rasops.h
--- a/sys/dev/rasops/rasops.h   Sat Aug 03 04:21:37 2019 +0000
+++ b/sys/dev/rasops/rasops.h   Sat Aug 03 06:29:52 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rasops.h,v 1.42 2019/07/31 04:45:44 rin Exp $ */
+/*     $NetBSD: rasops.h,v 1.43 2019/08/03 06:29:52 rin Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -172,13 +172,14 @@
 int    rasops_init(struct rasops_info *, int, int);
 int    rasops_reconfig(struct rasops_info *, int, int);
 void   rasops_unpack_attr(long, int *, int *, int *);
-void   rasops_eraserows(void *, int, int, long);
-void   rasops_erasecols(void *, int, int, int, long);
 int    rasops_get_cmap(struct rasops_info *, uint8_t *, size_t);
 
 extern const uint8_t   rasops_cmap[256 * 3];
 
 #ifdef _RASOPS_PRIVATE
+void   rasops_eraserows(void *, int, int, long);
+void   rasops_erasecols(void *, int, int, int, long);
+
 /*
  * Per-depth initialization functions.
  */



Home | Main Index | Thread Index | Old Index