rc_bitblt_vm.h

Go to the documentation of this file.
00001 /*  Copyright (C) 2005-2010, Axis Communications AB, LUND, SWEDEN
00002  *
00003  *  This file is part of RAPP.
00004  *
00005  *  RAPP is free software: you can redistribute it and/or modify
00006  *  it under the terms of the GNU Lesser General Public License as published
00007  *  by the Free Software Foundation, either version 3 of the License, or
00008  *  (at your option) any later version.
00009  *  You can use the comments under either the terms of the GNU Lesser General
00010  *  Public License version 3 as published by the Free Software Foundation,
00011  *  either version 3 of the License or (at your option) any later version, or
00012  *  the GNU Free Documentation License version 1.3 or any later version
00013  *  published by the Free Software Foundation; with no Invariant Sections, no
00014  *  Front-Cover Texts, and no Back-Cover Texts.
00015  *  A copy of the license is included in the documentation section entitled
00016  *  "GNU Free Documentation License".
00017  *
00018  *  RAPP is distributed in the hope that it will be useful,
00019  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00020  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00021  *  GNU Lesser General Public License for more details.
00022  *
00023  *  You should have received a copy of the GNU Lesser General Public
00024  *  License and a copy of the GNU Free Documentation License along
00025  *  with RAPP. If not, see <http://www.gnu.org/licenses/>.
00026  */
00027 
00039 #ifndef RC_BITBLT_VM_H
00040 #define RC_BITBLT_VM_H
00041 
00042 #include <stdint.h>
00043 #include "rc_export.h"
00044 
00045 #ifdef __cplusplus
00046 extern "C" {
00047 #endif
00048 
00049 /*
00050  * -------------------------------------------------------------
00051  *  Exported functions
00052  * -------------------------------------------------------------
00053  */
00054 
00066 RC_EXPORT void
00067 rc_bitblt_vm_copy_bin(uint8_t *restrict dst, int dst_dim,
00068                       const uint8_t *restrict src, int src_dim,
00069                       int width, int height);
00070 
00082 RC_EXPORT void
00083 rc_bitblt_vm_not_bin(uint8_t *restrict dst, int dst_dim,
00084                      const uint8_t *restrict src, int src_dim,
00085                      int width, int height);
00086 
00098 RC_EXPORT void
00099 rc_bitblt_vm_and_bin(uint8_t *restrict dst, int dst_dim,
00100                      const uint8_t *restrict src, int src_dim,
00101                      int width, int height);
00102 
00114 RC_EXPORT void
00115 rc_bitblt_vm_or_bin(uint8_t *restrict dst, int dst_dim,
00116                     const uint8_t *restrict src, int src_dim,
00117                     int width, int height);
00118 
00130 RC_EXPORT void
00131 rc_bitblt_vm_xor_bin(uint8_t *restrict dst, int dst_dim,
00132                      const uint8_t *restrict src, int src_dim,
00133                      int width, int height);
00134 
00146 RC_EXPORT void
00147 rc_bitblt_vm_nand_bin(uint8_t *restrict dst, int dst_dim,
00148                       const uint8_t *restrict src, int src_dim,
00149                       int width, int height);
00150 
00162 RC_EXPORT void
00163 rc_bitblt_vm_nor_bin(uint8_t *restrict dst, int dst_dim,
00164                      const uint8_t *restrict src, int src_dim,
00165                      int width, int height);
00166 
00178 RC_EXPORT void
00179 rc_bitblt_vm_xnor_bin(uint8_t *restrict dst, int dst_dim,
00180                       const uint8_t *restrict src, int src_dim,
00181                       int width, int height);
00182 
00194 RC_EXPORT void
00195 rc_bitblt_vm_andn_bin(uint8_t *restrict dst, int dst_dim,
00196                       const uint8_t *restrict src, int src_dim,
00197                       int width, int height);
00198 
00210 RC_EXPORT void
00211 rc_bitblt_vm_orn_bin(uint8_t *restrict dst, int dst_dim,
00212                      const uint8_t *restrict src, int src_dim,
00213                      int width, int height);
00214 
00226 RC_EXPORT void
00227 rc_bitblt_vm_nandn_bin(uint8_t *restrict dst, int dst_dim,
00228                        const uint8_t *restrict src, int src_dim,
00229                        int width, int height);
00230 
00242 RC_EXPORT void
00243 rc_bitblt_vm_norn_bin(uint8_t *restrict dst, int dst_dim,
00244                       const uint8_t *restrict src, int src_dim,
00245                       int width, int height);
00246 
00247 #ifdef __cplusplus
00248 };
00249 #endif
00250 
00251 #endif /* RC_BITBLT_VM_H */

Generated on 1 Jun 2016 for RAPP Compute by  doxygen 1.6.1