HomeSort by relevance Sort by last modified time
    Searched full:tiling (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/chromium/chrome/browser/
ntp_background_util.cc 18 gfx::Canvas* canvas, SkBitmap* ntp_background, int tiling, int alignment,
36 if (tiling != ThemeService::REPEAT &&
37 tiling != ThemeService::REPEAT_X) {
43 if (tiling != ThemeService::REPEAT &&
44 tiling != ThemeService::REPEAT_Y) {
67 int tiling = ThemeService::NO_REPEAT; local
69 &tiling);
76 canvas, ntp_background, tiling, alignment, area, tab_contents_height);
  /frameworks/base/graphics/java/android/graphics/
BitmapShader.java 21 * mirrored by setting the tiling mode.
35 * @param tileX The tiling mode for x to draw the bitmap in.
36 * @param tileY The tiling mode for y to draw the bitmap in.
LinearGradient.java 29 @param tile The Shader tiling mode
51 @param tile The Shader tiling mode
RadialGradient.java 29 @param tile The Shader tiling mode
53 @param tile The Shader tiling mode
  /external/chromium/chrome/browser/themes/
theme_service.h 55 // Strings used in tiling properties.
134 // Background tiling choices.
140 } Tiling;
197 // Convert a tiling value into a string like "no-repeat". Public
198 // so that it can be used to generate CSS values. Takes a Tiling.
199 static std::string TilingToString(int tiling);
201 // Parse tiling values from something like "no-repeat" into a Tiling value.
202 static int StringToTiling(const std::string& tiling);
theme_service.cc 32 // Strings used in background tiling repetition properties.
406 std::string ThemeService::TilingToString(int tiling) {
408 if (tiling == ThemeService::REPEAT_X)
410 if (tiling == ThemeService::REPEAT_Y)
412 if (tiling == ThemeService::REPEAT)
418 int ThemeService::StringToTiling(const std::string& tiling) {
419 const char* component = tiling.c_str();
  /external/webkit/Source/WebCore/css/
CSSBorderImageValue.h 53 // Values for how to handle the scaling/stretching/tiling of the image slices.
  /external/skia/include/effects/
SkGradientShader.h 38 @param mode The tiling mode
60 @param mode The tiling mode
85 @param mode The tiling mode
  /external/webkit/Source/WebCore/platform/graphics/gpu/
Texture.cpp 92 TilingData tiling(maxTextureSize, width, height, true);
93 int numTiles = tiling.numTiles();
107 IntRect tileBoundsWithBorder = tiling.tileBoundsWithBorder(i);
  /external/webkit/Source/WebCore/platform/graphics/
GeneratedImage.cpp 53 // Allow the generator to provide visually-equivalent tiling parameters for better performance.
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ContentLayerChromium.cpp 44 // Maximum size the width or height of this layer can be before enabling tiling
47 // When tiling is enabled, use tiles of this dimension squared.
  /external/skia/include/core/
SkShader.h 275 @param tmx The tiling mode to use when sampling the bitmap in the x-direction.
276 @param tmy The tiling mode to use when sampling the bitmap in the y-direction.
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_toolbar_view_unittest.mm 169 // Return the correct tiling/alignment information.
  /external/mesa3d/docs/
relnotes-7.8.2.html 95 <li>Fixed tiling of small textures on all Intel drivers.</li>
  /external/skia/bench/
BitmapBench.cpp 95 - tiling: none, repeat, mirror, clamp
  /external/skia/samplecode/
SampleTiling.cpp 88 SampleCode::TitleR(evt, "Tiling");
  /external/skia/src/gpu/
GrPathRenderer.h 24 * Paths may be drawn multiple times as when tiling for supersampling. The
  /external/skia/src/gpu/gl/
GrGpuGL.h 161 // sampler state (filtering, tiling)
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ContextShadowCairo.cpp 159 This function uses tiling to improve the performance of the shadow
218 // Size of the tiling side.
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 308 // Leopard has an optimized call for the tiling of image patterns, but we can only use it if the image has been decoded enough that
310 // overall image buffer needs to tile with "gaps", we can't use the optimized tiling call in that case.
  /external/chromium/chrome/browser/resources/ntp4/
most_visited_page.js 11 * Creates a new Most Visited object for tiling.
tile_page.js 66 * additional tiling values that are calculated from TilePage constants.
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
LinearGradient_Delegate.java 103 * @param tile The Shader tiling mode
RadialGradient_Delegate.java 99 * @param tile The Shader tiling mode
  /external/skia/include/gpu/
GrContext.h 199 * tiling non-power-of-two textures on APIs that don't support this (e.g.
200 * unextended GLES2). Tiling a npot texture created by lockScratchTexture on
201 * such an API will create gaps in the tiling pattern. This includes clamp
    [all...]

Completed in 2007 milliseconds

1 2 3