OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CanvasTexture
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/android/layers/
CanvasTexture.cpp
26
#define LOG_TAG "
CanvasTexture
"
30
#include "
CanvasTexture
.h"
51
static HashMap<int,
CanvasTexture
*> s_textures;
58
PassRefPtr<
CanvasTexture
>
CanvasTexture
::getCanvasTexture(CanvasLayer* layer)
61
RefPtr<
CanvasTexture
> texture = s_textures.get(layer->uniqueId());
64
return adoptRef(new
CanvasTexture
(layer->uniqueId()));
67
bool
CanvasTexture
::setHwAccelerated(bool hwAccelerated)
83
void
CanvasTexture
::setSize(const IntSize& size)
102
SurfaceTextureClient*
CanvasTexture
::nativeWindow(
[
all
...]
CanvasTexture.h
43
class
CanvasTexture
: public ThreadSafeRefCounted<
CanvasTexture
> {
49
static PassRefPtr<
CanvasTexture
> getCanvasTexture(CanvasLayer* layer);
63
virtual ~
CanvasTexture
();
77
CanvasTexture
(int layerId);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
CanvasTexture.java
23
//
CanvasTexture
is a texture whose content is the drawing on a Canvas.
25
// By default
CanvasTexture
is not opaque.
26
abstract class
CanvasTexture
extends UploadedTexture {
30
public
CanvasTexture
(int width, int height) {
Completed in 32 milliseconds