diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-11 06:13:17 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-11 06:13:17 +0000 |
commit | f6688b97a3839cff0e98e2cc841b17d6a78b72e1 (patch) | |
tree | 2d9a4e5c22e48e676345ab39d1422b2d31b20a8a /remoting/host/differ.h | |
parent | 5b5e40ee98303198899ebb73463dfe3508ba3a25 (diff) | |
download | chromium_src-f6688b97a3839cff0e98e2cc841b17d6a78b72e1.zip chromium_src-f6688b97a3839cff0e98e2cc841b17d6a78b72e1.tar.gz chromium_src-f6688b97a3839cff0e98e2cc841b17d6a78b72e1.tar.bz2 |
Use SSE2 block differ for chromoting
We have the SSE2 lying around in the tree just never being used. This will
allow us to use it.
BUG=None
TEST=Chromoting to a host machine and the diff will work correctly
Review URL: http://codereview.chromium.org/6469022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74571 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/differ.h')
-rw-r--r-- | remoting/host/differ.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/remoting/host/differ.h b/remoting/host/differ.h index d227333..8386e7a 100644 --- a/remoting/host/differ.h +++ b/remoting/host/differ.h @@ -36,12 +36,6 @@ class Differ { void MarkDirtyBlocks(const void* prev_buffer, const void* curr_buffer); // Diff a small block of image and return non-zero if there is a diff. - // Currently, this just returns 0 or 1, but this may change in the future - // to return the number of pixels changed. - DiffInfo DiffBlock(const uint8* prev_buffer, const uint8* curr_buffer, - int stride); - - // Diff a small block of image and return non-zero if there is a diff. // This checks only the part of the block specified by the width and // height parameters. // This is much slower than DiffBlock() since it cannot assume that the |