HomeSort by relevance Sort by last modified time
    Searched defs:WebGLTexture (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/html/canvas/
WebGLTexture.cpp 30 #include "WebGLTexture.h"
35 PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx)
37 return adoptRef(new WebGLTexture(ctx));
40 PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContext* ctx, Platform3DObject obj)
42 return adoptRef(new WebGLTexture(ctx, obj));
45 WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx)
52 WebGLTexture::WebGLTexture(WebGLRenderingContext* ctx, Platform3DObject obj
    [all...]
WebGLTexture.h 36 class WebGLTexture : public CanvasObject {
38 virtual ~WebGLTexture() { deleteObject(); }
40 static PassRefPtr<WebGLTexture> create(WebGLRenderingContext*);
44 static PassRefPtr<WebGLTexture> create(WebGLRenderingContext*, Platform3DObject);
55 WebGLTexture(WebGLRenderingContext*);
56 WebGLTexture(WebGLRenderingContext*, Platform3DObject);

Completed in 280 milliseconds