Skip to content

Commit

Permalink
Reverted to older version of WebP, newer one crashed on Android.
Browse files Browse the repository at this point in the history
  • Loading branch information
reduz committed Feb 11, 2014
1 parent 1c77268 commit abb985e
Show file tree
Hide file tree
Showing 95 changed files with 5,286 additions and 10,051 deletions.
30 changes: 0 additions & 30 deletions README.md

This file was deleted.

9 changes: 8 additions & 1 deletion doc/base/classes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4743,13 +4743,20 @@
</brief_description>
<description>
Camera node for 2D scenes. It forces the screen (current layer) to scroll following this node. This makes it easier (and faster) to program scrollable scenes than manually changing the position of [CanvasItem] based nodes.
This node is intended to be a simple helper get get things going quickly
and it may happen often that more functionality is desired to change
how the camera works. To make your own custom camera node, simply
inherit from [Node2D] and change the transform of the canvas by
calling get_viewport().set_canvas_transform(m) in [Viewport].

</description>
<methods>
<method name="set_offset" >
<argument index="0" name="offset" type="Vector2">
</argument>
<description>
Set the scroll offset.
Set the scroll offset. Useful for looking around or
camera shake animations.
</description>
</method>
<method name="get_offset" qualifiers="const" >
Expand Down
109 changes: 51 additions & 58 deletions drivers/webp/SCsub
Original file line number Diff line number Diff line change
Expand Up @@ -2,64 +2,58 @@ Import('env')


webp_sources = [
"webp/mux/muxread.c",\
"webp/mux/muxedit.c",\
"webp/demux/demux.c",\
"webp/mux/muxinternal.c",\
"webp/enc/alpha.c",\
"webp/enc/tree.c",\
"webp/enc/webpenc.c",\
"webp/enc/cost.c",\
"webp/enc/quant.c",\
"webp/enc/token.c",\
"webp/enc/iterator.c",\
"webp/enc/syntax.c",\
"webp/enc/frame.c",\
"webp/enc/picture.c",\
"webp/enc/analysis.c",\
"webp/enc/backward_references.c",\
"webp/enc/filter.c",\
"webp/enc/vp8l.c",\
"webp/enc/layer.c",\
"webp/enc/histogram.c",\
"webp/enc/config.c",\
"webp/dec/alpha.c",\
"webp/dec/vp8.c",\
"webp/dec/tree.c",\
"webp/dec/webp.c",\
"webp/dec/idec.c",\
"webp/dec/quant.c",\
"webp/dec/frame.c",\
"webp/dec/buffer.c",\
"webp/dec/io.c",\
"webp/dec/vp8l.c",\
"webp/dec/layer.c",
"webp/mux/muxedit.c",
"webp/mux/muxread.c",
"webp/mux/muxinternal.c",
"webp/mux/demux.c",
"webp/enc/tree.c",
"webp/enc/analysis.c",
"webp/enc/backward_references.c",
"webp/enc/alpha.c",
"webp/enc/picture.c",
"webp/enc/frame.c",
"webp/enc/webpenc.c",
"webp/enc/cost.c",
"webp/enc/filter.c",
"webp/enc/vp8l.c",
"webp/enc/quant.c",
"webp/enc/histogram.c",
"webp/enc/syntax.c",
"webp/enc/config.c",
"webp/enc/layer.c",
"webp/enc/iterator.c",
"webp/dsp/dec_sse2.c",
"webp/dsp/upsampling_sse2.c",
"webp/dsp/dec_neon.c",
"webp/dsp/upsampling_sse2.c",\
"webp/dsp/dec_sse2.c",\
"webp/dsp/enc_neon.c",\
"webp/dsp/dec.c",\
"webp/dsp/upsampling.c",\
"webp/dsp/enc_sse2.c",\
"webp/dsp/enc.c",\
"webp/dsp/cpu.c",\
"webp/dsp/lossless.c",\
"webp/dsp/upsampling_neon.c",\
"webp/dsp/yuv.c",\
"webp/utils/bit_reader.c",\
"webp/utils/thread.c",\
"webp/utils/alpha_processing.c",\
"webp/utils/random.c",\
"webp/utils/quant_levels.c",\
"webp/utils/huffman.c",\
"webp/utils/filters.c",\
"webp/utils/rescaler.c",\
"webp/utils/quant_levels_dec.c",\
"webp/utils/color_cache.c",\
"webp/utils/utils.c",\
"webp/utils/huffman_encode.c",\
"webp/utils/bit_writer.c",\
"webp/image_loader_webp.cpp",\
"webp/dsp/enc.c",
"webp/dsp/enc_sse2.c",
"webp/dsp/upsampling.c",
"webp/dsp/lossless.c",
"webp/dsp/cpu.c",
"webp/dsp/dec.c",
"webp/dsp/yuv.c",
"webp/utils/bit_reader.c",
"webp/utils/filters.c",
"webp/utils/bit_writer.c",
"webp/utils/thread.c",
"webp/utils/quant_levels.c",
"webp/utils/color_cache.c",
"webp/utils/rescaler.c",
"webp/utils/utils.c",
"webp/utils/huffman.c",
"webp/utils/huffman_encode.c",
"webp/dec/tree.c",
"webp/dec/alpha.c",
"webp/dec/frame.c",
"webp/dec/vp8l.c",
"webp/dec/vp8.c",
"webp/dec/quant.c",
"webp/dec/webp.c",
"webp/dec/buffer.c",
"webp/dec/io.c",
"webp/dec/layer.c",
"webp/dec/idec.c",
"webp/image_loader_webp.cpp"
]

env.drivers_sources+=webp_sources
Expand All @@ -68,4 +62,3 @@ env.drivers_sources+=webp_sources

Export('env')


Loading

0 comments on commit abb985e

Please sign in to comment.