Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_GL / INC / Viewport.h
1 #ifndef VIEWPORT_H
2 #define VIEWPORT_H
3
4 #include "envBilatGL.h"
5
6 class CBI_GL Viewport
7 {
8 public:
9 Viewport(int x=0,int y=0,int w=0,int h=0);
10 float getRatio() const;
11
12 public:
13 int x;
14 int y;
15 int w;
16 int h;
17
18 };
19
20 #endif