diff options
author | kbr@google.com <kbr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-20 06:05:23 +0000 |
---|---|---|
committer | kbr@google.com <kbr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-20 06:05:23 +0000 |
commit | e08b2652afb31bad466bc69d1f1aa3b80298361f (patch) | |
tree | 305527e71cd5d41394aab78e3607c9e8c31e7451 /o3d/converter/converter.gyp | |
parent | b2d346da57198822ddf59563a7c100eb6f6bc5a2 (diff) | |
download | chromium_src-e08b2652afb31bad466bc69d1f1aa3b80298361f.zip chromium_src-e08b2652afb31bad466bc69d1f1aa3b80298361f.tar.gz chromium_src-e08b2652afb31bad466bc69d1f1aa3b80298361f.tar.bz2 |
Added --convert-dds-to-png command line option to the COLLADA converter,
which causes all DDS textures to be outputted as PNGs. This required
changes to the serialization code to reconstitute cube map textures from
six separate images. Some bugs in the plugin were uncovered with this
change which have been worked around for the time being.
Pulled in libtxc_dxtn library for decompressing DXTn textures.
Tested by converting teapot with --convert-dds-to-png and running
helloworld.html and render-mode.html.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/1677002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45014 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/converter/converter.gyp')
-rw-r--r-- | o3d/converter/converter.gyp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/o3d/converter/converter.gyp b/o3d/converter/converter.gyp index ffede11f..fb99ddf 100644 --- a/o3d/converter/converter.gyp +++ b/o3d/converter/converter.gyp @@ -14,6 +14,7 @@ '..', '../..', '../../<(gtestdir)', + '../<(txcdir)', ], }, 'targets': [ @@ -53,6 +54,7 @@ 'cross/stream_bank_stub.h', 'cross/texture_stub.cc', 'cross/texture_stub.h', + '../<(txcdir)/txc_fetch_dxtn.cc', ], 'conditions' : [ ['renderer == "gl"', |