OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:alphaimage
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsContextTest.cpp
247
OwnPtr<ImageBuffer>
alphaImage
= ImageBuffer::create(IntSize(100, 100));
248
alphaImage
->context()->fillRect(IntRect(0, 0, 100, 100), alpha);
251
context.drawImageBuffer(
alphaImage
.get(), FloatRect(10, 10, 10, 10));
285
OwnPtr<ImageBuffer>
alphaImage
= ImageBuffer::create(IntSize(100, 100));
286
alphaImage
->context()->fillRect(IntRect(0, 0, 100, 100), alpha);
289
context.drawImageBuffer(
alphaImage
.get(), FloatRect(10, 10, 10, 10));
543
RefPtr<BitmapImage>
alphaImage
= BitmapImage::create(NativeImageSkia::create(alphaBitmap));
544
EXPECT_FALSE(
alphaImage
->currentFrameKnownToBeOpaque());
553
context.drawImage(
alphaImage
.get(), IntPoint(0, 0));
560
context.drawImage(
alphaImage
.get(), IntPoint(5, 5))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FilterEffect.h
97
void setIsAlphaImage(bool
alphaImage
) { m_alphaImage =
alphaImage
; }
FEGaussianBlur.cpp
84
unsigned dx, int dxLeft, int dxRight, int stride, int strideLine, int effectWidth, int effectHeight, bool
alphaImage
)
104
if (
alphaImage
) // Source image is black, it just has different alpha values
Completed in 36 milliseconds