From e6221638e348e80cad0ebb68595771a5f7a76826 Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Thu, 18 Sep 2014 02:44:29 -0300 Subject: [PATCH] Accidentally deleted more than I should have --HG-- branch : minor --- src/modules/graphics/Texture.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/modules/graphics/Texture.cpp b/src/modules/graphics/Texture.cpp index b48f8a2bf..8c00ff4f0 100644 --- a/src/modules/graphics/Texture.cpp +++ b/src/modules/graphics/Texture.cpp @@ -27,6 +27,15 @@ namespace graphics Texture::Filter Texture::defaultFilter; +Texture::Texture() + : width(0) + , height(0) + , filter(getDefaultFilter()) + , wrap() + , vertices() +{ +} + Texture::~Texture() { }