~ubuntu-branches/ubuntu/trusty/virtualbox-lts-xenial/trusty-proposed

« back to all changes in this revision

Viewing changes to src/VBox/GuestHost/OpenGL/include/cr_bmpscale.h

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2016-02-23 14:28:26 UTC
  • Revision ID: package-import@ubuntu.com-20160223142826-bdu69el2z6wa2a44
Tags: upstream-4.3.36-dfsg
ImportĀ upstreamĀ versionĀ 4.3.36-dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef ___cr_bmpscale_h__
 
2
#define ___cr_bmpscale_h__
 
3
 
 
4
#include <iprt/types.h>
 
5
#include <iprt/cdefs.h>
 
6
 
 
7
 
 
8
RT_C_DECLS_BEGIN
 
9
 
 
10
#ifndef IN_RING0
 
11
# define VBOXBMPSCALEDECL(_type) DECLEXPORT(_type)
 
12
#else
 
13
# define VBOXBLITTERDECL(_type) RTDECL(_type)
 
14
#endif
 
15
 
 
16
VBOXBMPSCALEDECL(void) CrBmpScale32 (uint8_t *dst,
 
17
                        int iDstDeltaLine,
 
18
                        int dstW, int dstH,
 
19
                        const uint8_t *src,
 
20
                        int iSrcDeltaLine,
 
21
                        int srcW, int srcH);
 
22
 
 
23
RT_C_DECLS_END
 
24
 
 
25
#endif /* #ifndef ___cr_bmpscale_h__ */