Unverified Commit b2f34dcf authored by Daniel Friesel's avatar Daniel Friesel
Browse files

We do not use gib_imlib_load_image; comment it out

parent 2b29446d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "utils.h"
#include "debug.h"

/*
int
gib_imlib_load_image(Imlib_Image * im, char *filename)
{
@@ -38,7 +39,6 @@ gib_imlib_load_image(Imlib_Image * im, char *filename)
   *im = imlib_load_image_with_error_return(filename, &err);
   if ((err) || (!im))
   {
      /* Check error code */
      switch (err)
      {
        case IMLIB_LOAD_ERROR_FILE_DOES_NOT_EXIST:
@@ -91,6 +91,7 @@ gib_imlib_load_image(Imlib_Image * im, char *filename)
   }
   return (1);
}
*/

int
gib_imlib_image_get_width(Imlib_Image im)
+2 −0
Original line number Diff line number Diff line
@@ -47,7 +47,9 @@ extern "C"
{
#endif

/*
int gib_imlib_load_image(Imlib_Image * im, char *filename);
*/
int gib_imlib_image_get_width(Imlib_Image im);
int gib_imlib_image_get_height(Imlib_Image im);
int gib_imlib_image_has_alpha(Imlib_Image im);