diff options
-rw-r--r-- | src/TextureRender.cc | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/TextureRender.cc b/src/TextureRender.cc index 692984f..d3ef8f6 100644 --- a/src/TextureRender.cc +++ b/src/TextureRender.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: TextureRender.cc,v 1.6 2002/12/09 23:43:50 fluxgen Exp $ | 25 | // $Id: TextureRender.cc,v 1.7 2003/01/05 22:36:28 fluxgen Exp $ |
26 | 26 | ||
27 | #include "TextureRender.hh" | 27 | #include "TextureRender.hh" |
28 | 28 | ||
@@ -45,6 +45,16 @@ TextureRender::TextureRender(BImageControl &imgctrl, | |||
45 | 45 | ||
46 | width = ((signed) w > 0) ? w : 1; | 46 | width = ((signed) w > 0) ? w : 1; |
47 | height = ((signed) h > 0) ? h : 1; | 47 | height = ((signed) h > 0) ? h : 1; |
48 | // clamp to "normal" size | ||
49 | if (width > 3200) { | ||
50 | cerr<<"TextureRender: Warning! Width > 3200 setting Width = 3200"<<endl; | ||
51 | width = 3200; | ||
52 | } | ||
53 | |||
54 | if (height > 3200) { | ||
55 | cerr<<"TextureRender: Warning! Height > 3200 setting Height = 3200"<<endl; | ||
56 | height = 3200; | ||
57 | } | ||
48 | 58 | ||
49 | red = new (nothrow) unsigned char[width * height]; | 59 | red = new (nothrow) unsigned char[width * height]; |
50 | if (red == 0) { | 60 | if (red == 0) { |