Searched refs:isTexture (Results 1 - 25 of 45) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLSharedObject.h48 virtual bool isTexture() const { return false; } function in class:blink::WebGLSharedObject
H A DWebGLTexture.h112 virtual bool isTexture() const OVERRIDE { return true; }
H A DWebGLFramebuffer.cpp346 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/
H A DFramebufferAttachment.h51 bool isTexture() const;
53 bool isTextureWithId(GLuint textureId) const { return isTexture() && id() == textureId; }
54 bool isRenderbufferWithId(GLuint renderbufferId) const { return !isTexture() && id() == renderbufferId; }
H A DRenderbuffer.h83 virtual bool isTexture() const;
H A DFramebuffer.cpp27 if (attachment->isTexture())
47 if (attachment->isTexture())
409 if (colorbuffer->isTexture())
489 if (mDepthbuffer->isTexture())
544 if (mStencilbuffer->isTexture())
H A DFramebufferAttachment.cpp74 bool FramebufferAttachment::isTexture() const function in class:gl::FramebufferAttachment
H A DRenderbuffer.cpp165 bool RenderbufferStorage::isTexture() const function in class:gl::RenderbufferStorage
H A DContext.cpp2173 if (attachment && attachment->isTexture())
2181 if (depthStencilAttachment && depthStencilAttachment->isTexture())
/external/deqp/modules/gles2/functional/
H A Des2fNegativeStateApiTests.cpp719 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/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.h37 bool isTexture(const llvm::Value &);
H A DNVPTXGenericToNVVM.cpp86 !llvm::isTexture(*GV) && !llvm::isSurface(*GV) &&
H A DNVPTXUtilities.cpp129 bool llvm::isTexture(const llvm::Value &val) { function in class:llvm
/external/deqp/modules/gles3/functional/
H A Des3fNegativeStateApiTests.cpp1182 GLboolean isTexture;
1185 isTexture = glIsTexture(texture);
1186 checkBooleans (isTexture, GL_FALSE);
1189 isTexture = glIsTexture(texture);
1190 checkBooleans (isTexture, GL_FALSE);
1193 isTexture = glIsTexture(texture);
1194 checkBooleans (isTexture, GL_TRUE);
1198 isTexture = glIsTexture(texture);
1199 checkBooleans (isTexture, GL_FALSE);
/external/deqp/framework/opengl/wrapper/
H A DglwInitES20Direct.inl91 gl->isTexture = &glIsTexture;
H A DglwInitES20.inl91 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
H A DglwInitES30Direct.inl91 gl->isTexture = &glIsTexture;
H A DglwFunctions.inl67 glIsTextureFunc isTexture;
H A DglwInitES30.inl91 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
H A DglwInitES31.inl91 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
H A DglwInitGL30.inl65 gl->isTexture = (glIsTextureFunc) loader->get("glIsTexture");
/external/deqp/framework/opengl/
H A DgluES3PlusWrapperFuncs.inl91 dst->isTexture = src.isTexture;
/external/chromium_org/cc/test/
H A Dtest_web_graphics_context_3d.cc152 GLboolean TestWebGraphicsContext3D::isTexture( function in class:cc::TestWebGraphicsContext3D
H A Dtest_web_graphics_context_3d.h115 virtual GLboolean isTexture(GLuint texture);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h171 virtual WGC3Dboolean isTexture(WebGLId texture) { return false; } function in class:blink::MockWebGraphicsContext3D

Completed in 509 milliseconds

12