diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-18 04:56:30 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-18 04:56:30 +0000 |
| commit | 23940f9e034af023af610c56e915a6044ea436ec (patch) | |
| tree | 8b1cf2cb0399bcb194444adc7aec136b6b8adbc0 | |
| parent | 02066c5d0b09ae49aa1f9b7193fb16f1ac7f6a37 (diff) | |
add a new texture and style class
| -rw-r--r-- | otk/Makefile.am | 1 | ||||
| -rw-r--r-- | otk/renderstyle.cc | 11 | ||||
| -rw-r--r-- | otk/renderstyle.hh | 14 | ||||
| -rw-r--r-- | otk/rendertexture.cc | 11 |
4 files changed, 37 insertions, 0 deletions
diff --git a/otk/Makefile.am b/otk/Makefile.am index ac326598..dd70fa79 100644 --- a/otk/Makefile.am +++ b/otk/Makefile.am @@ -9,6 +9,7 @@ INCLUDES= -I../src noinst_LTLIBRARIES=libotk.la libotk_la_SOURCES=rendercontrol.cc truerendercontrol.cc surface.cc \ + rendertexture.cc renderstyle.cc \ color.cc display.cc font.cc gccache.cc image.cc \ property.cc imagecontrol.cc rect.cc screeninfo.cc \ texture.cc timer.cc style.cc \ diff --git a/otk/renderstyle.cc b/otk/renderstyle.cc new file mode 100644 index 00000000..18c5324f --- /dev/null +++ b/otk/renderstyle.cc @@ -0,0 +1,11 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif // HAVE_CONFIG_H + +#include "renderstyle.hh" + +namespace otk { + +} diff --git a/otk/renderstyle.hh b/otk/renderstyle.hh new file mode 100644 index 00000000..111149e0 --- /dev/null +++ b/otk/renderstyle.hh @@ -0,0 +1,14 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- +#ifndef __renderstyle_hh +#define __renderstyle_hh + +namespace otk { + +#include "rendertexture.hh" + +class RenderStyle { +}; + +} + +#endif // __rendertexture_hh diff --git a/otk/rendertexture.cc b/otk/rendertexture.cc new file mode 100644 index 00000000..f6f2108f --- /dev/null +++ b/otk/rendertexture.cc @@ -0,0 +1,11 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- + +#ifdef HAVE_CONFIG_H +# include "../config.h" +#endif // HAVE_CONFIG_H + +#include "rendertexture.hh" + +namespace otk { + +} |
