-
Notifications
You must be signed in to change notification settings - Fork 4
/
upMode.h
38 lines (24 loc) · 1.12 KB
/
upMode.h
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
33
34
35
36
37
38
//---------------------------------------------------------------------------------------//
// 概要: 上角系の処理
//---------------------------------------------------------------------------------------//
#ifndef __UPMODE_H
#define __UPMODE_H
// 左側の長さカウント //
template<typename PixelType>
void upMode_LeftCountLength(BlendingInfo<PixelType> *info); // 左
template<typename PixelType>
void upMode_RightCountLength(BlendingInfo<PixelType> *info); // 右
template<typename PixelType>
void upMode_TopCountLength( BlendingInfo<PixelType> *info); // 上
template<typename PixelType>
void upMode_BottomCountLength( BlendingInfo<PixelType> *info); // 下
// ブレンド //
template<typename PixelType>
void upMode_LeftBlending( BlendingInfo<PixelType> *info); // 左ブレンド
template<typename PixelType>
void upMode_RightBlending( BlendingInfo<PixelType> *info); // 右ブレンド
template<typename PixelType>
void upMode_TopBlending( BlendingInfo<PixelType> *info); // 上ブレンド
template<typename PixelType>
void upMode_BottomBlending( BlendingInfo<PixelType> *info); // 下ブレンド
#endif