software to compress image into DXT5 w/out use of video card

  • Follow


I would like to compress images into DXT5,
but not use my video card for this purpose.
(In fact, I cannot use the card because the S3TC
extension to openGL imposes certain constraints
on the size of images the card can compress.)

Once I have the compressed data in program memory,
I will later upload it onto the card using:

  glCompressedTexSubImage2DARB

Anyone know of 3rd party libraries (preferably C/C++)
that will do DXT5 compression "off-line"?

Thanks!

0
Reply clrnsc (19) 6/10/2005 11:49:16 PM

try

  * libtxc_dxtn
  * Version:  0.1
  * Copyright (C) 2004  Roland Scheidegger   All Rights Reserved.


hendrik


clrnsc@yahoo.com schrieb:
> I would like to compress images into DXT5,
> but not use my video card for this purpose.
> (In fact, I cannot use the card because the S3TC
> extension to openGL imposes certain constraints
> on the size of images the card can compress.)
> 
> Once I have the compressed data in program memory,
> I will later upload it onto the card using:
> 
>   glCompressedTexSubImage2DARB
> 
> Anyone know of 3rd party libraries (preferably C/C++)
> that will do DXT5 compression "off-line"?
> 
> Thanks!
> 
0
Reply Hendrik 6/23/2005 10:06:43 PM


clrnsc@yahoo.com wrote:

> I would like to compress images into DXT5,
> but not use my video card for this purpose.
> (In fact, I cannot use the card because the S3TC
> extension to openGL imposes certain constraints
> on the size of images the card can compress.)
> 
> Once I have the compressed data in program memory,
> I will later upload it onto the card using:
> 
>   glCompressedTexSubImage2DARB
> 
> Anyone know of 3rd party libraries (preferably C/C++)
> that will do DXT5 compression "off-line"?
> 
> Thanks!

Both ATI and Nvidia have libraries and free programs on their
developer pages for this task.
I use ATIs "Compresonator", its a very good tool with lots of options and
features.
Nvidia has Photoshop plugins which I couldn't test yet. (Someone who wants
to buy Photoshop for me? ^^)

-- 
For�email,�remove�my�socks.
0
Reply T 6/23/2005 10:25:14 PM

Hendrik Wendler wrote:
> 
> try
> 
>  * libtxc_dxtn
>  * Version:  0.1
>  * Copyright (C) 2004  Roland Scheidegger   All Rights Reserved.
> 

ATI has one for dowload on their web site.

http://www.ati.com/developer/compress.html


-- 
<\___/>
/ O O \
\_____/  FTB.    For email, remove my socks.

In science it often happens that scientists say, 'You know
that's a really good argument; my position is mistaken,'
and then they actually change their minds and you never
hear that old view from them again.  They really do it.
It doesn't happen as often as it should, because scientists
are human and change is sometimes painful.  But it happens
every day.  I cannot recall the last time something like
that happened in politics or religion.

- Carl Sagan, 1987 CSICOP keynote address
0
Reply fungus 6/24/2005 2:12:01 AM

3 Replies
411 Views

(page loaded in 0.08 seconds)

Similiar Articles:











7/24/2012 5:10:28 PM


Reply: