Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_GL / INC / common / PseudoCudaType.h
1 #ifndef CUDA_PSEUDO_TYPE_H_
2 #define CUDA_PSEUDO_TYPE_H_
3
4 /*----------------------------------------------------------------------*\
5 |* Declaration *|
6 \*---------------------------------------------------------------------*/
7
8 /*--------------------------------------*\
9 |* Public *|
10 \*-------------------------------------*/
11
12 namespace cpu
13 {
14
15 struct float2
16 {
17 float x;
18 float y;
19 };
20
21 struct float3
22 {
23 float x;
24 float y;
25 float z;
26 };
27
28 struct uchar4
29 {
30 unsigned char x;
31 unsigned char y;
32 unsigned char z;
33 unsigned char w;
34 };
35
36 }
37
38 #endif
39
40 /*----------------------------------------------------------------------*\
41 |* End *|
42 \*---------------------------------------------------------------------*/