Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Image / src / cpp / core / 04_OpenGL_pure / provider / MyDisplayableProvider.cpp
1 #include "MyDisplayableProvider.h"
2
3
4 /*----------------------------------------------------------------------*\
5 |* Declaration *|
6 \*---------------------------------------------------------------------*/
7
8 /*--------------------------------------*\
9 |* Imported *|
10 \*-------------------------------------*/
11
12 /*--------------------------------------*\
13 |* Public *|
14 \*-------------------------------------*/
15
16 /*--------------------------------------*\
17 |* Private *|
18 \*-------------------------------------*/
19
20 /*----------------------------------------------------------------------*\
21 |* Implementation *|
22 \*---------------------------------------------------------------------*/
23
24 /*--------------------------------------*\
25 |* Public *|
26 \*-------------------------------------*/
27
28 /*-----------------*\
29 |* static *|
30 \*----------------*/
31
32 Displayable_A* MyDisplayableProvider::createGL()
33 {
34 return new MyDisplayable();
35 }
36
37 /*--------------------------------------*\
38 |* Private *|
39 \*-------------------------------------*/
40
41 /*----------------------------------------------------------------------*\
42 |* End *|
43 \*---------------------------------------------------------------------*/