OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 The Android Open Source Project | 2 * Copyright (C) 2006 The Android Open Source Project |
3 * | 3 * |
4 * Licensed under the Apache License, Version 2.0 (the "License"); | 4 * Licensed under the Apache License, Version 2.0 (the "License"); |
5 * you may not use this file except in compliance with the License. | 5 * you may not use this file except in compliance with the License. |
6 * You may obtain a copy of the License at | 6 * You may obtain a copy of the License at |
7 * | 7 * |
8 * http://www.apache.org/licenses/LICENSE-2.0 | 8 * http://www.apache.org/licenses/LICENSE-2.0 |
9 * | 9 * |
10 * Unless required by applicable law or agreed to in writing, software | 10 * Unless required by applicable law or agreed to in writing, software |
11 * distributed under the License is distributed on an "AS IS" BASIS, | 11 * distributed under the License is distributed on an "AS IS" BASIS, |
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 * See the License for the specific language governing permissions and | 13 * See the License for the specific language governing permissions and |
14 * limitations under the License. | 14 * limitations under the License. |
15 */ | 15 */ |
16 | 16 |
17 #ifndef SkUserConfig_DEFINED | 17 #ifndef SkUserConfig_DEFINED |
18 #define SkUserConfig_DEFINED | 18 #define SkUserConfig_DEFINED |
19 | 19 |
20 #include "skia/ext/skia_histogram.h" | |
21 | |
22 /* SkTypes.h, the root of the public header files, does the following trick: | 20 /* SkTypes.h, the root of the public header files, does the following trick: |
23 | 21 |
24 #include <SkPreConfig.h> | 22 #include <SkPreConfig.h> |
25 #include <SkUserConfig.h> | 23 #include <SkUserConfig.h> |
26 #include <SkPostConfig.h> | 24 #include <SkPostConfig.h> |
27 | 25 |
28 SkPreConfig.h runs first, and it is responsible for initializing certain | 26 SkPreConfig.h runs first, and it is responsible for initializing certain |
29 skia defines. | 27 skia defines. |
30 | 28 |
31 SkPostConfig.h runs last, and its job is to just check that the final | 29 SkPostConfig.h runs last, and its job is to just check that the final |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 #define GR_GL_CUSTOM_SETUP_HEADER "GrGLConfig_chrome.h" | 252 #define GR_GL_CUSTOM_SETUP_HEADER "GrGLConfig_chrome.h" |
255 | 253 |
256 // mtklein's fiddling with Src / SrcOver. Will rebaseline these only once when
done. | 254 // mtklein's fiddling with Src / SrcOver. Will rebaseline these only once when
done. |
257 #define SK_SUPPORT_LEGACY_X86_BLITS | 255 #define SK_SUPPORT_LEGACY_X86_BLITS |
258 | 256 |
259 #define SK_DISABLE_TILE_IMAGE_FILTER_OPTIMIZATION | 257 #define SK_DISABLE_TILE_IMAGE_FILTER_OPTIMIZATION |
260 | 258 |
261 // ===== End Chrome-specific definitions ===== | 259 // ===== End Chrome-specific definitions ===== |
262 | 260 |
263 #endif | 261 #endif |
OLD | NEW |