summaryrefslogtreecommitdiffstats
path: root/skia/config
diff options
context:
space:
mode:
authorskaslev@chromium.org <skaslev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-24 15:13:22 +0000
committerskaslev@chromium.org <skaslev@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-24 15:13:22 +0000
commit4dd72d3ca99f6b1234854cfddd88bb0e6e943fc0 (patch)
tree4b2f5937a963b5c1ee9d00cbf47198030958c2f2 /skia/config
parent687931247aecb1c2eab7928f37d6877ce60c2978 (diff)
downloadchromium_src-4dd72d3ca99f6b1234854cfddd88bb0e6e943fc0.zip
chromium_src-4dd72d3ca99f6b1234854cfddd88bb0e6e943fc0.tar.gz
chromium_src-4dd72d3ca99f6b1234854cfddd88bb0e6e943fc0.tar.bz2
Moved SkCanvasVideoRenderer to media/filters.
SkCanvasVideoRenderer will be used for rendering YUV video streams by the software compositor. To avoid circular dependencies cc/ cannot depend on webkit/ hence the move. Also changed the interface of SkCanvasVideoRenderer::Paint to accept gfx::RectF instead of gfx::Rect. The gfx::Rect was converted to a floating point SkRect anyway and we actually use the floating point version from the software compositor. BUG=150016 Review URL: https://chromiumcodereview.appspot.com/11234071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163829 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/config')
-rw-r--r--skia/config/win/stdint.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/skia/config/win/stdint.h b/skia/config/win/stdint.h
deleted file mode 100644
index a37ac78..0000000
--- a/skia/config/win/stdint.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// skia is written in C99 and requires <stdint.h> and <inttypes.h>.
-// Since MSVC doesn't include these headers, we have to write our own version
-// to provide a compatibility layer between MSVC and skia
-
-#ifndef SKIA_CONFIG_WIN_STDINT_H_
-#define SKIA_CONFIG_WIN_STDINT_H_
-
-#if !defined(_MSC_VER)
-#error This file should only be included when compiling with MSVC.
-#endif
-
-// Define C99 equivalent types.
-typedef signed char int8_t;
-typedef signed short int16_t;
-typedef signed int int32_t;
-typedef signed long long int64_t;
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long long uint64_t;
-
-#endif // SKIA_CONFIG_WIN_STDINT_H_