HomeSort by relevance Sort by last modified time
    Searched refs:isTexture (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLSharedObject.h 48 virtual bool isTexture() const { return false; }
WebGLTexture.h 112 virtual bool isTexture() const OVERRIDE { return true; }
WebGLFramebuffer.cpp 346 ASSERT(object && (object->isTexture() || object->isRenderbuffer()));
354 } else if (object->isTexture()) {
377 } else if (object->isTexture()) {
393 } else if (object->isTexture()) {
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 51 bool isTexture() const;
53 bool isTextureWithId(GLuint textureId) const { return isTexture() && id() == textureId; }
54 bool isRenderbufferWithId(GLuint renderbufferId) const { return !isTexture() && id() == renderbufferId; }
Renderbuffer.h 83 virtual bool isTexture() const;
Framebuffer.cpp 27 if (attachment->isTexture())
47 if (attachment->isTexture())
409 if (colorbuffer->isTexture())
489 if (mDepthbuffer->isTexture())
544 if (mStencilbuffer->isTexture())
FramebufferAttachment.cpp 74 bool FramebufferAttachment::isTexture() const
Renderbuffer.cpp 165 bool RenderbufferStorage::isTexture() const
Context.cpp     [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
TextureSource.java 100 if (GLToolbox.isTexture(mTexId) && mIsOwner) {
GLToolbox.java 38 public static boolean isTexture(int texId) {
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.h 37 bool isTexture(const llvm::Value &);
NVPTXGenericToNVVM.cpp 86 !llvm::isTexture(*GV) && !llvm::isSurface(*GV) &&
NVPTXUtilities.cpp 129 bool llvm::isTexture(const llvm::Value &val) {
  /external/deqp/modules/gles2/functional/
es2fNegativeStateApiTests.cpp 719 GLboolean isTexture;
722 isTexture = glIsTexture(texture);
723 checkBooleans (isTexture, GL_FALSE);
726 isTexture = glIsTexture(texture);
727 checkBooleans (isTexture, GL_FALSE);
730 isTexture = glIsTexture(texture);
731 checkBooleans (isTexture, GL_TRUE);
735 isTexture = glIsTexture(texture);
736 checkBooleans (isTexture, GL_FALSE);
  /external/deqp/modules/gles3/functional/
es3fNegativeStateApiTests.cpp     [all...]
  /external/deqp/framework/opengl/wrapper/
glwInitES20Direct.inl 91 gl->isTexture = &glIsTexture;
glwInitES20.inl 91 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
glwInitES30Direct.inl 91 gl->isTexture = &glIsTexture;
glwFunctions.inl 67 glIsTextureFunc isTexture;
glwInitES30.inl 91 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
  /external/deqp/framework/opengl/
gluES3PlusWrapperFuncs.inl 91 dst->isTexture = src.isTexture;
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.h 115 virtual GLboolean isTexture(GLuint texture);
test_web_graphics_context_3d.cc 152 GLboolean TestWebGraphicsContext3D::isTexture(
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockWebGraphicsContext3D.h 171 virtual WGC3Dboolean isTexture(WebGLId texture) { return false; }

Completed in 1903 milliseconds

1 2