HomeSort by relevance Sort by last modified time
    Searched refs:opacity (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/chromium/chrome/browser/ui/cocoa/
hover_image_button.h 31 // Sets the default opacity.
32 - (void)setDefaultOpacity:(float)opacity;
34 // Sets the opacity on hover.
35 - (void)setHoverOpacity:(float)opacity;
37 // Sets the opacity when pressed.
38 - (void)setPressedOpacity:(float)opacity;
  /external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/
transition-property-names.js 10 element.style.webkitTransitionProperty = "opacity";
11 shouldBe("element.style.webkitTransitionProperty", "'opacity'");
  /external/webkit/Source/WebCore/platform/graphics/qt/
TransparencyLayer.h 48 TransparencyLayer(const QPainter* p, const QRect &rect, qreal opacity, QPixmap& alphaMask)
50 , opacity(opacity)
73 qreal opacity; member in struct:WebCore::TransparencyLayer
  /external/webkit/Source/WebCore/css/
SVGCSSPropertyNames.in 9 # opacity
13 flood-opacity
16 stop-opacity
23 fill-opacity
38 stroke-opacity
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.cpp 39 : opacity(SVGRenderStyle::initialFillOpacity())
46 , opacity(other.opacity)
53 if (opacity != other.opacity)
72 : opacity(SVGRenderStyle::initialStrokeOpacity())
83 , opacity(other.opacity)
96 && opacity == other.opacity
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
apps_page.css 31 opacity: 0.8;
36 opacity: 0.8;
tile_page.css 16 opacity: 0.3;
32 -webkit-transition: -webkit-transform, opacity;
  /external/chromium/chrome/browser/resources/options/
password_manager_list.css 8 -webkit-transition: opacity .15s;
15 opacity: 0.3;
22 -webkit-transition: opacity .15s;
23 opacity: 1;
  /external/skia/include/utils/
SkLayer.h 49 void setOpacity(SkScalar opacity) { m_opacity = opacity; }
108 void draw(SkCanvas*, SkScalar opacity);
114 virtual void onDraw(SkCanvas*, SkScalar opacity);
  /external/webkit/Source/WebCore/platform/graphics/android/
Layer.h 52 void setOpacity(SkScalar opacity) { m_opacity = opacity; }
125 void draw(SkCanvas*, SkScalar opacity);
135 virtual void onDraw(SkCanvas*, SkScalar opacity);
Layer.cpp 159 void Layer::onDraw(SkCanvas*, SkScalar opacity) {
165 void Layer::draw(SkCanvas* canvas, SkScalar opacity) {
170 SkDebugf("--- drawlayer %p opacity %g size [%g %g] pos [%g %g] matrix %s children %s\n",
171 this, opacity * getOpacity(), m_size.width(), m_size.height(),
175 opacity = SkScalarMul(opacity, getOpacity());
176 if (opacity <= 0) {
177 // SkDebugf("---- abort drawing %p opacity %g\n", this, opacity);
194 onDraw(canvas, opacity);
    [all...]
PaintedSurface.h 76 float opacity();
ShaderProgram.cpp 314 float opacity,
349 glUniform1f(alpha, opacity);
353 setBlendingState(opacity < 1.0);
357 void ShaderProgram::drawQuad(SkRect& geometry, int textureId, float opacity,
362 drawQuadInternal(geometry, textureId, opacity, m_program,
371 drawQuadInternal(geometry, textureId, opacity, m_programInverted,
379 drawQuadInternal(geometry, textureId, opacity, m_surfTexOESProgram,
385 drawQuadInternal(geometry, textureId, opacity, m_surfTexOESProgramInverted,
518 int textureId, float opacity,
539 glUniform1f(alpha, opacity);
    [all...]
ShaderProgram.h 53 void drawQuad(SkRect& geometry, int textureId, float opacity,
57 const SkRect& geometry, int textureId, float opacity,
97 void drawQuadInternal(SkRect& geometry, GLint textureId, float opacity,
104 float opacity, GLenum textureTarget, GLint program,
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGForeignObject.cpp 59 float opacity = style()->opacity(); local
60 if (opacity < 1.0f)
61 childPaintInfo.context->beginTransparencyLayer(opacity);
65 if (opacity < 1.0f)
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 91 // onto the screen or into another texture with a specified transform, opacity and mask.
99 virtual void drawTexture(const BitmapTexture& texture, const IntRect& target, const TransformationMatrix& matrix = TransformationMatrix(), float opacity = 1.0f, const BitmapTexture* maskTexture = 0) = 0;
103 virtual void paintToTarget(const BitmapTexture& texture, const IntSize&, const TransformationMatrix& matrix, float opacity, const IntRect& visibleRect)
106 drawTexture(texture, IntRect(0, 0, texture.contentSize().width(), texture.contentSize().height()), matrix, opacity, 0);
TextureMapperPlatformLayer.h 60 float opacity; member in struct:WebCore::TextureMapperContentLayer::PaintOptions
  /external/chromium/chrome/browser/resources/ntp/
apps.css 76 -webkit-transition: opacity .3s;
79 opacity: 0;
90 opacity: .9;
98 opacity: .7;
102 -webkit-transition: top .2s, left .2s, right .2s, opacity .2s;
124 opacity: 0;
129 -webkit-transition: opacity .5s;
161 -webkit-transition: opacity .15s;
  /external/chromium/chrome/browser/ui/gtk/
nine_box.h 40 void RenderToWidgetWithOpacity(GtkWidget* dst, double opacity) const;
46 // Change all pixels that are white in |images_| to have 0 opacity.
nine_box.cc 111 void NineBox::RenderToWidgetWithOpacity(GtkWidget* dst, double opacity) const {
141 DrawPixbuf(cr, images_[0], 0, 0, opacity);
143 TileImage(cr, images_[1], x1, 0, x2 - x1, y1, opacity);
145 DrawPixbuf(cr, images_[2], x2, 0, opacity);
149 TileImage(cr, images_[3], 0, y1, x1, y2 - y1, opacity);
151 TileImage(cr, images_[4], x1, y1, x2 - x1, y2 - y1, opacity);
153 TileImage(cr, images_[5], x2, y1, dst_width - x2, y2 - y1, opacity);
157 DrawPixbuf(cr, images_[6], 0, y2, opacity);
159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity);
161 DrawPixbuf(cr, images_[8], x2, y2, opacity);
    [all...]
  /external/skia/src/utils/
SkLayer.cpp 165 void SkLayer::onDraw(SkCanvas*, SkScalar opacity) {
171 void SkLayer::draw(SkCanvas* canvas, SkScalar opacity) {
176 SkDebugf("--- drawlayer %p opacity %g size [%g %g] pos [%g %g] matrix %s children %s\n",
177 this, opacity * this->getOpacity(), m_size.width(), m_size.height(),
181 opacity = SkScalarMul(opacity, this->getOpacity());
182 if (opacity <= 0) {
183 // SkDebugf("---- abort drawing %p opacity %g\n", this, opacity);
200 this->onDraw(canvas, opacity);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.h 41 virtual void drawTexture(const BitmapTexture& texture, const IntRect&, const TransformationMatrix& transform, float opacity, const BitmapTexture* maskTexture);
44 virtual void paintToTarget(const BitmapTexture&, const IntSize&, const TransformationMatrix&, float opacity, const IntRect& visibleRect);
  /external/webkit/Source/WebCore/svg/
SVGFEFloodElement.cpp 66 float opacity = filterStyle->svgStyle()->floodOpacity(); local
68 return FEFlood::create(filter, color, opacity);
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCLayerImpl.h 86 void setOpacity(float opacity) { m_opacity = opacity; }
87 float opacity() const { return m_opacity; } function in class:WebCore::CCLayerImpl
122 void setDrawOpacity(float opacity) { m_drawOpacity = opacity; }
  /external/chromium/chrome/browser/resources/touch_ntp/
newtab.css 86 -webkit-transition-property: -webkit-transform, opacity, zIndex;
116 opacity: 0.8;
121 opacity: 0.8;
207 opacity: 0.3;

Completed in 1513 milliseconds

1 2 3 4 5 6