OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:borderTexels
(Results
1 - 4
of
4
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/gpu/
TilingData.cpp
45
static int computeNumTiles(int maxTextureSize, int totalSize, int
borderTexels
)
47
if (maxTextureSize - 2 *
borderTexels
<= 0)
50
int numTiles = max(1, 1 + (totalSize - 1 - 2 *
borderTexels
) / (maxTextureSize - 2 *
borderTexels
));
TilingData.h
51
int
borderTexels
() const { return m_borderTexels; }
Texture.cpp
167
min(m_tiles.maxTextureSize(), m_tiles.
borderTexels
() + updateRectSanitized.width()) *
168
min(m_tiles.maxTextureSize(), m_tiles.
borderTexels
() + updateRectSanitized.height());
/external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.cpp
276
PlatformCanvas::Painter::TextOption textOption = m_tilingData.
borderTexels
() ? PlatformCanvas::Painter::GrayscaleText : PlatformCanvas::Painter::SubpixelText;
364
const GC3Dint filter = m_tilingData.
borderTexels
() ? GraphicsContext3D::LINEAR : GraphicsContext3D::NEAREST;
Completed in 41 milliseconds