Lines Matching refs:TextureRef
111 TextureRef *refOut)
129 TextureRef *refOut)
149 TextureRef *refOut)
170 TextureRef *refOut)
195 TextureRef *refOut)
222 TextureRef *refOut)
249 TextureRef *refOut)
268 TextureRef *refOut)
281 TextureRef *refOut)
307 TextureRef *refOut)
324 TextureRef Texture::MakeFromMetal(id<MTLTexture> metalTexture)
326 ANGLE_MTL_OBJC_SCOPE { return TextureRef(new Texture(metalTexture)); }
607 TextureRef Texture::createCubeFaceView(uint32_t face)
614 return TextureRef(new Texture(
623 TextureRef Texture::createSliceMipView(uint32_t slice, const MipmapNativeLevel &level)
632 return TextureRef(new Texture(this, MTLTextureType2D, NSMakeRange(level.get(), 1),
641 TextureRef Texture::createMipView(const MipmapNativeLevel &level)
646 return TextureRef(
651 TextureRef Texture::createViewWithDifferentFormat(MTLPixelFormat format)
654 return TextureRef(new Texture(this, format));
657 TextureRef Texture::createViewWithCompatibleFormat(MTLPixelFormat format)
659 return TextureRef(new Texture(this, format));
662 TextureRef Texture::createSwizzleView(const TextureSwizzleChannels &swizzle)
665 return TextureRef(new Texture(this, swizzle));
771 TextureRef Texture::getLinearColorView()
794 TextureRef Texture::getReadableCopy(ContextMtl *context,
836 TextureRef Texture::getStencilView()