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

12 3 4 5 6

  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 205 if (!m_state.visible || m_state.opacity < 0.001)
228 const bool hasTransparency = m_state.opacity < 0.99 || m_state.maskLayer;
246 // ClipLayer: creates a new framebuffer, the size of the layer, and then paints it to the enclosing BitmapTexture with the layer's transform/opacity.
473 opt.opacity = 1;
484 textureMapper->paintToTarget(*m_surface.get(), options.viewportSize, options.transform, options.opacity * m_state.opacity, options.targetRect);
507 const float opacity = options.isSurface ? 1 : options.opacity; local
511 opacity * m_state.replicaLayer->m_state.opacity,
    [all...]
TextureMapperNode.h 47 float opacity; member in struct:WebCore::TexmapPaintOptions
213 float opacity; member in struct:WebCore::TextureMapperNode::State
230 : opacity(1.f)
GraphicsLayerTextureMapper.h 70 virtual void setOpacity(float opacity);
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyle.h 149 if (!(fill->opacity == obj))
150 fill.access()->opacity = obj;
161 if (!(stroke->opacity == obj))
162 stroke.access()->opacity = obj;
203 if (!(stops->opacity == obj))
204 stops.access()->opacity = obj;
295 float fillOpacity() const { return fill->opacity; }
297 float strokeOpacity() const { return stroke->opacity; }
304 float stopOpacity() const { return stops->opacity; }
StyleRareNonInheritedData.cpp 36 , opacity(RenderStyle::initialOpacity())
69 , opacity(o.opacity)
115 && opacity == o.opacity
SVGRenderStyleDefs.h 108 float opacity; member in class:WebCore::StyleFillData
127 float opacity; member in class:WebCore::StyleStrokeData
152 float opacity; member in class:WebCore::StyleStopData
StyleRareNonInheritedData.h 89 float opacity; // Whether or not we're transparent. member in class:WebCore::StyleRareNonInheritedData
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.cpp 91 float opacity = style->opacity(); local
93 if (opacity < 1 || shadow) {
96 if (opacity < 1) {
98 paintInfo.context->beginTransparencyLayer(opacity);
156 if (style->opacity() < 1)
  /external/chromium/chrome/browser/ui/gtk/download/
download_started_animation_gtk.cc 114 // opacity less than 0xff (i.e. <100% opacity) will be transparent.
174 double opacity = std::min(1.0 - pow(GetCurrentValue() - 0.5, 2) * 4.0, local
178 gtk_window_set_opacity(GTK_WINDOW(popup_), opacity); local
  /external/chromium/chrome/browser/ui/views/download/
download_started_animation_win.cc 158 double opacity = std::min(1.0 - pow(GetCurrentValue() - 0.5, 2) * 4.0, local
162 static_cast<SkColor>(opacity * 255.0));
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
main.css 39 opacity: 0.5;
98 opacity: .3;
134 opacity: .5;
171 opacity: .5;
  /external/webkit/Source/WebCore/platform/graphics/android/
LayerAndroid.h 142 const FloatRect& clip, float opacity, float scale);
143 void setDrawOpacity(float opacity) { m_drawOpacity = opacity; }
290 virtual void onDraw(SkCanvas*, SkScalar opacity);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.h 117 void setOpacity(float opacity) { m_opacity = opacity; setNeedsCommit(); }
118 float opacity() const { return m_opacity; } function in class:WebCore::LayerChromium
180 float width, float height, float opacity,
LayerTilerChromium.h 74 void draw(const IntRect& contentRect, const TransformationMatrix&, float opacity);
115 float width, float height, float opacity,
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 65 virtual void setOpacity(float opacity);
TextureMapperQt.h 56 virtual void drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture);
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 36 opacity: 1;
37 -webkit-transition: opacity .15s, width .15s;
220 opacity: 0;
225 opacity: 0;
229 opacity: 1;
  /sdk/assetstudio/src/com/android/assetstudiolib/
Util.java 269 AlphaComposite.SRC_OVER, (float) effect.opacity));
304 AlphaComposite.SRC_ATOP, (float) effect.opacity));
416 public double opacity; field in class:Util.ShadowEffect
420 double opacity, boolean inner) {
425 this.opacity = opacity;
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 107 float opacity; member in struct:WebCore::PlatformPainterState
131 , opacity(1.0)
181 opacity = other->opacity;
239 // (= no changes) and an alpha of 1.0 - opacity, so the destination
240 // pixels will be fully transparent when opacity == 1.0 and
241 // unchanged when opacity == 0.0.
243 const VGfloat values[] = { 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0 - opacity };
291 if (opacity >= (1.0 - FLT_EPSILON))
295 VGfloat values[] = { 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, opacity };
540 float PainterOpenVG::opacity() const function in class:WebCore::PainterOpenVG
    [all...]
GraphicsContextOpenVG.cpp 288 void GraphicsContext::beginTransparencyLayer(float opacity)
294 UNUSED_PARAM(opacity);
359 void GraphicsContext::setAlpha(float opacity)
364 m_data->setOpacity(opacity);
  /external/skia/src/svg/
SkSVGPaintState.cpp 34 SVG_ATTRIBUTE(opacity),
36 SVG_LITERAL_ATTRIBUTE(stop-opacity, f_stopOpacity),
396 SkString& opacity = current.f_opacity;
398 parser._addAttributeLen("alpha", opacity.c_str(), opacity.size());
426 SkString& opacity = current.f_opacity;
427 parser._addAttributeLen("alpha", opacity.c_str(), opacity.size());
  /external/chromium/chrome/browser/resources/options/
cookies_view.css 106 opacity: 0;
118 opacity: 1;
  /external/webkit/Source/WebCore/inspector/front-end/
Drawer.js 109 {element: this._viewStatusBar, start: {opacity: 0}, end: {opacity: 1}}
170 {element: this._viewStatusBar, start: {opacity: 1}, end: {opacity: 0}}
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsLayerCACF.h 74 virtual void setOpacity(float opacity);
  /external/chromium/chrome/browser/resources/file_manager/css/
file_manager.css 11 -webkit-transition: opacity 0.07s linear;
16 opacity: 0;
234 opacity: 0.1;
238 opacity: 0;
243 opacity: 0.5;
249 opacity: 1 !important;

Completed in 977 milliseconds

12 3 4 5 6