added 3dengfx into the repo, probably not the correct version for this
[summerhack] / src / 3dengfx / src / gfx / pbuffer.hpp
1 /*
2 Copyright 2004 John Tsiombikas <nuclear@siggraph.org>
3
4 This file is part of the graphics core library.
5
6 the graphics core library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 the graphics core library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with the graphics core library; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20 #ifndef _PBUFFER_HPP_
21 #define _PBUFFER_HPP_
22
23 #include "common/byteorder.h"
24
25 template <class T>
26 class Buffer {
27 public:
28         T *buffer;
29         unsigned long width, height, pitch;
30         
31         Buffer();
32         Buffer(unsigned long x, unsigned long y);
33         Buffer(const Buffer &b);
34         ~Buffer();
35 };
36
37 typedef uint32_t Pixel;
38 typedef Buffer<Pixel> PixelBuffer;
39
40 // implementation
41
42 template <class T>
43 Buffer<T>::Buffer() {
44         buffer = 0;
45 }
46
47 template <class T>
48 Buffer<T>::Buffer(unsigned long x, unsigned long y) {
49         width = x;
50         height = y;
51         pitch = width * sizeof(T);
52         
53         buffer = new T[width * height];
54 }
55
56 template <class T>
57 Buffer<T>::Buffer(const Buffer<T> &b) {
58         *this = b;
59         buffer = new T[width * height];
60         memcpy(buffer, b.buffer, pitch * height);
61 }
62
63 template <class T>
64 Buffer<T>::~Buffer() {
65         if(buffer) delete [] buffer;
66 }
67
68 #endif  // _PBUFFER_HPP_