HomeSort by relevance Sort by last modified time
    Searched refs:isTexture (Results 1 - 25 of 46) 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 111 virtual bool isTexture() const OVERRIDE { return true; }
WebGLFramebuffer.cpp 323 ASSERT(object && (object->isTexture() || object->isRenderbuffer()));
331 } else if (object->isTexture()) {
354 } else if (object->isTexture()) {
370 } else if (object->isTexture()) {
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 73 bool isTexture() const;
107 virtual bool isTexture() const = 0;
136 virtual bool isTexture() const;
168 virtual bool isTexture() const;
201 virtual bool isTexture() const;
234 virtual bool isTexture() const;
FramebufferAttachment.cpp 108 bool Texture2DAttachment::isTexture() const
188 bool TextureCubeMapAttachment::isTexture() const
268 bool Texture3DAttachment::isTexture() const
346 bool Texture2DArrayAttachment::isTexture() const
473 bool FramebufferAttachment::isTexture() const
475 return mInstance->isTexture();
Renderbuffer.h 55 virtual bool isTexture() const;
Renderbuffer.cpp 90 bool RenderbufferStorage::isTexture() const
  /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");
glwInitES31.inl 91 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
glwInitGL30.inl 65 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 102 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 172 virtual WGC3Dboolean isTexture(WebGLId texture) { return false; }

Completed in 578 milliseconds

1 2