OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:useAlpha
(Results
1 - 5
of
5
) sorted by null
/external/jmonkeyengine/engine/src/core/com/jme3/ui/
Picture.java
131
* @param
useAlpha
If true, the picture will appear transparent and allow
135
public void setImage(AssetManager assetManager, String imgName, boolean
useAlpha
){
138
setTexture(assetManager, tex,
useAlpha
);
146
* @param
useAlpha
If true, the picture will appear transparent and allow
150
public void setTexture(AssetManager assetManager, Texture2D tex, boolean
useAlpha
){
156
material.getAdditionalRenderState().setBlendMode(
useAlpha
? BlendMode.Alpha : BlendMode.Off);
/frameworks/base/graphics/java/android/graphics/drawable/
ColorDrawable.java
131
int
useAlpha
= baseAlpha * alpha >> 8;
133
mState.mUseColor = (mState.mBaseColor << 8 >>> 8) | (
useAlpha
<< 24);
/external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.h
80
PassOwnPtr<HBITMAP> clipBitmap(const IntRect& rect, bool
useAlpha
, BitmapInfo& bmpInfo, void*& pixels);
82
PassRefPtr<SharedBitmap> clipBitmap(const IntRect& rect, bool
useAlpha
);
SharedBitmap.cpp
296
PassOwnPtr<HBITMAP> SharedBitmap::clipBitmap(const IntRect& rect, bool
useAlpha
, BitmapInfo& bmpInfo, void*& pixels)
308
bmpInfo = BitmapInfo::createBottomUp(IntSize(copyWidth, copyHeight), (
useAlpha
&& is32bit()) ? BitmapInfo::BitCount32 : BitmapInfo::BitCount16);
324
PassRefPtr<SharedBitmap> SharedBitmap::clipBitmap(const IntRect& rect, bool
useAlpha
)
333
RefPtr<SharedBitmap> newBmp = create(IntSize(copyWidth, copyHeight),
useAlpha
&& is32bit() ? BitmapInfo::BitCount32 : BitmapInfo::BitCount16, false);
419
bool
useAlpha
= op == CompositeSourceOver && hasAlpha() && is32bit();
440
clippedBmp = clipBitmap(IntRect(tileRect),
useAlpha
, patternBmpInfo, patternPixels);
506
BitmapInfo bmpInfo = BitmapInfo::createBottomUp(IntSize(srcRectWin.right, srcRectWin.bottom),
useAlpha
? BitmapInfo::BitCount32 : BitmapInfo::BitCount16);
533
if (
useAlpha
&& hasAlphaBlendSupport()) {
538
} else if (
useAlpha
&& !hasAlphaBlendSupport() || op == CompositeSourceOver && usesTransparentColor()) {
/frameworks/base/core/java/android/gesture/
GestureOverlayView.java
403
final int
useAlpha
= baseAlpha * alpha >> 8;
404
mGesturePaint.setColor((mCurrentColor << 8 >>> 8) | (
useAlpha
<< 24));
Completed in 628 milliseconds