#!/bin/bash

#for i in $1/*.bmp
#do
#  ./compress_texture --mipmap $i
#done		      

find $1 -name "*.bmp" | ./compress_texture --stdin --mipmap
