blob: 0ccfc05e47f2fb63d760a01b979840c6b76b782f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* bventry.h
*
* Copyright (C) 2011 Texas Instruments, Inc.
*
* This file is part of BLTsville, an open application programming interface
* (API) for accessing 2-D software or hardware implementations.
*
* This work is licensed under the Creative Commons Attribution-NoDerivs 3.0
* Unported License. To view a copy of this license, visit
* http://creativecommons.org/licenses/by-nd/3.0/ or send a letter to
* Creative Commons, 444 Castro Street, Suite 900, Mountain View, California,
* 94041, USA.
*/
#ifndef BVENTRY_H
#define BVENTRY_H
/* Forward declarations */
struct bvbuffdesc;
struct bvbltparams;
struct bvcopparams;
/*
* bv_*() - These are the API calls for BLTsville. The client needs to
* import these from the shared library.
*/
typedef enum bverror (*BVFN_MAP)(struct bvbuffdesc *buffdesc);
typedef enum bverror (*BVFN_BLT)(struct bvbltparams *bltparms);
typedef enum bverror (*BVFN_UNMAP)(struct bvbuffdesc *buffdesc);
typedef enum bverror (*BVFN_CACHE)(struct bvcopparams *copparams);
#endif /* BVENTRY_H */
|