HomeSort by relevance Sort by last modified time
    Searched defs:SkFixed (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/include/core/
SkFixed.h 15 /** \file SkFixed.h
22 typedef int32_t SkFixed;
35 #define SkFloatToFixed(x) ((SkFixed)((x) * SK_Fixed1))
38 static inline SkFixed SkFloatToFixed(float x) {
40 return (SkFixed)n;
45 static inline SkFixed SkFloatToFixed_Check(float x) {
47 SkFixed n32 = (SkFixed)n64;
56 #define SkDoubleToFixed(x) ((SkFixed)((x) * SK_Fixed1))
68 /** Converts an integer to a SkFixed, asserting that the result does not overflo
    [all...]
  /external/skia/include/core/
SkFixed.h 15 /** \file SkFixed.h
22 typedef int32_t SkFixed;
35 #define SkFloatToFixed(x) ((SkFixed)((x) * SK_Fixed1))
38 static inline SkFixed SkFloatToFixed(float x) {
40 return (SkFixed)n;
45 static inline SkFixed SkFloatToFixed_Check(float x) {
47 SkFixed n32 = (SkFixed)n64;
56 #define SkDoubleToFixed(x) ((SkFixed)((x) * SK_Fixed1))
68 /** Converts an integer to a SkFixed, asserting that the result does not overflo
    [all...]

Completed in 70 milliseconds