Searched defs:transparent (Results 1 - 25 of 26) sorted by relevance

12

/external/quake/quake/src/QW/client/
H A Dd_init.c70 void D_CopyRects (vrect_t *prects, int transparent) argument
80 UNUSED(transparent);
H A Ddraw.c128 Draws one 8*8 graphics character with 0 being transparent.
742 int transparent)
753 if (transparent)
791 int transparent)
805 if (transparent)
741 R_DrawRect8(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
790 R_DrawRect16(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
/external/quake/quake/src/WinQuake/
H A Dd_init.cpp70 void D_CopyRects (vrect_t *prects, int transparent) argument
80 UNUSED(transparent);
H A Ddraw.cpp130 Draws one 8*8 graphics character with 0 being transparent.
631 int transparent)
642 if (transparent)
680 int transparent)
694 if (transparent)
630 R_DrawRect8(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
679 R_DrawRect16(vrect_t *prect, int rowbytes, byte *psrc, int transparent) argument
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DBaseRenderer.cpp101 background ? *background : Color::transparent); member in class:WebCore::Color
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/
H A DMTLLoader.java72 protected boolean transparent = false; field in class:MTLLoader
117 transparent = false;
129 if (alpha < 1f && transparent && !disallowTransparency){
152 if (transparent && !disallowTransparency){
225 transparent = true;
250 transparent = true;
276 transparent = true;
/external/webkit/Source/WebCore/platform/graphics/
H A DColor.cpp45 const RGBA32 Color::transparent; member in class:WebCore::Color
H A DColor.h163 static const RGBA32 transparent = 0x00000000; member in class:WebCore::Color
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
H A DMaterialContext.java55 /* package */final boolean transparent; field in class:MaterialContext
173 //(in blender transparent mask is 0x10000 but its better to verify it because blender can indicate transparency when
175 boolean transparent = false;
177 transparent = diffuseColor.a < 1.0f;
183 transparent = transparent || specularColor.a < 1.0f;
186 transparent = transparent || ambientColor.a < 1.0f;
188 this.transparent = transparent;
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTextureMapperQt.cpp47 m_pixmap.fill(Qt::transparent);
55 m_painter.fillRect(QRect(dirtyRect), Qt::transparent); member in class:WebCore::Qt
146 intermediatePixmap.fill(Qt::transparent);
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebviewprivate.h70 gboolean transparent; member in struct:_WebKitWebViewPrivate
H A Dwebkitwebview.cpp632 static void paintWebView(Frame* frame, gboolean transparent, GraphicsContext& context, const IntRect& clipRect, const Vector<IntRect>& rects) argument
641 if (transparent)
649 if (transparent)
682 paintWebView(frame, priv->transparent, gc, static_cast<IntRect>(event->area), paintRects);
710 paintWebView(frame, priv->transparent, gc, rect, rects);
3075 g_param_spec_boolean("transparent",
3077 _("Whether content has a transparent background"),
4422 * Returns whether the #WebKitWebView has a transparent background.
4432 return priv->transparent;
4439 * Sets whether the #WebKitWebView has a transparent backgroun
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DMaterial.java96 private boolean transparent = false; field in class:Material
256 * Check if the transparent value marker is set on this material.
257 * @return True if the transparent value marker is set on this material.
261 return transparent;
265 * Set the transparent value marker.
269 * up that the material is transparent and therefore any geometries
270 * using it should be put into the {@link Bucket#Transparent transparent
273 * @param transparent the transparent value marker.
275 public void setTransparent(boolean transparent) { argument
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dgzio.c66 int transparent; /* 1 if input file is not a .gz file */ member in struct:gz_stream
125 s->transparent = 0;
281 mode to transparent if the gzip magic header is not present; set s->err
308 s->transparent = s->stream.avail_in;
316 s->transparent = 1;
427 if (s->transparent) {
814 if (s->transparent) {
870 if (!s->transparent) (void)inflateReset(&s->stream);
914 return s->transparent;
/external/skia/src/images/
H A DSkMovie_gif.cpp113 int transparent, int width)
116 if (*src != transparent) {
124 const ColorMapObject* cmap, int transparent, int copyWidth,
132 copyLine(dst, src, cmap, transparent, copyWidth);
141 int transparent)
159 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 0);
162 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 8, 4);
165 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 4, 2);
167 copyInterlaceGroup(bm, src, cmap, transparent, copyWidth, copyHeight, frame->ImageDesc, 2, 1);
171 int transparent)
112 copyLine(uint32_t* dst, const unsigned char* src, const ColorMapObject* cmap, int transparent, int width) argument
123 copyInterlaceGroup(SkBitmap* bm, const unsigned char*& src, const ColorMapObject* cmap, int transparent, int copyWidth, int copyHeight, const GifImageDesc& imageDesc, int rowStep, int startRow) argument
140 blitInterlace(SkBitmap* bm, const SavedImage* frame, const ColorMapObject* cmap, int transparent) argument
170 blitNormal(SkBitmap* bm, const SavedImage* frame, const ColorMapObject* cmap, int transparent) argument
221 int transparent = -1; local
[all...]
/external/webkit/Source/WebKit/win/
H A DWebView.h736 /* [in] */ BOOL transparent);
738 virtual HRESULT STDMETHODCALLTYPE transparent(
739 /* [out, retval] */ BOOL* transparent);
861 bool transparent() const { return m_transparent; } function in class:WebView
/external/webkit/Source/WebCore/page/
H A DFrame.cpp842 const Color& backgroundColor, bool transparent,
870 frameView->updateBackgroundRecursively(backgroundColor, transparent);
841 createView(const IntSize& viewportSize, const Color& backgroundColor, bool transparent, const IntSize& fixedLayoutSize, bool useFixedLayout, ScrollbarMode horizontalScrollbarMode, bool horizontalLock, ScrollbarMode verticalScrollbarMode, bool verticalLock) argument
H A DFrameView.cpp1893 void FrameView::updateBackgroundRecursively(const Color& backgroundColor, bool transparent) argument
1897 view->setTransparent(transparent);
2370 fillWithRed = false; // Selections are transparent, don't fill with red.
2372 fillWithRed = false; // Element images are transparent, don't fill with red.
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp737 bool transparent = view->transparent(); local
738 Color backgroundColor = transparent ? Color::transparent : Color::white;
739 core(m_webFrame)->createView(IntRect(rect).size(), backgroundColor, transparent, IntSize(), false);
/external/webkit/Source/WebKit/wx/
H A DWebView.cpp518 void wxWebView::SetTransparent(bool transparent) argument
527 frame->view()->setTransparent(transparent);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp1401 bool transparent = webkit_web_view_get_transparent(containingWindow); local
1402 Color backgroundColor = transparent ? WebCore::Color::transparent : WebCore::Color::white;
1406 frame->createView(size, backgroundColor, transparent, IntSize(), false);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DFrameLoaderClientWx.cpp967 bool transparent = false; local
968 Color backgroundColor = transparent ? WebCore::Color::transparent : WebCore::Color::white;
971 m_frame->createView(size, backgroundColor, transparent, IntSize(), false);
/external/kernel-headers/original/linux/
H A Dpci.h158 unsigned int transparent:1; /* Transparent PCI bridge */ member in struct:pci_dev
/external/webkit/Source/WebCore/inspector/front-end/
H A DColor.js287 // Special Values - Advanced but Must Be Parsed First - transparent
660 "transparent": [[0, 0, 0, 0], [0, 0, 0, 0], "transparent"],
661 "rgba(0,0,0,0)": [[0, 0, 0, 0], [0, 0, 0, 0], "transparent"],
662 "hsla(0,0,0,0)": [[0, 0, 0, 0], [0, 0, 0, 0], "transparent"],
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar ... VIRTUAL public static final int DOUBLE_BUFFERED public static final int TRANSPARENT public static final int UP public static final int UNDERLINE_SINGLE ...

Completed in 685 milliseconds

12