texture loading
[convexer.git] / nbvtf / librgbcx.cpp
index ae6e72ccab759b43582a856d630760494862d716..958b99e43a24e12b46dc934d59989b8a979d938f 100644 (file)
@@ -21,4 +21,14 @@ extern "C"
        {
                rgbcx::encode_bc3( level, pDst, pPixels );
        }
+
+   int rgbcx__unpack_bc1( const void *pSrc, uint8_t *pDst )
+   {
+      return rgbcx::unpack_bc1( pSrc, pDst );
+   }
+
+   int rgbcx__unpack_bc3( const void *pSrc, uint8_t *pDst )
+   {
+      return rgbcx::unpack_bc3( pSrc, pDst );
+   }
 }