Home | History | Annotate | Download | only in glshared

Lines Matching full:internalformat

331 	const TransferFormat format = transferImageFormat(cfg.internalFormat);
336 gl.texImage2D(target, level, cfg.internalFormat.format, w, h, 0,
346 const TransferFormat format = transferImageFormat(cfg.internalFormat);
352 gl.texImage3D(glTarget(cfg), level, cfg.internalFormat.format, w, h, depth, 0,
397 gl.renderbufferStorage(GL_RENDERBUFFER, rbo->internalFormat.format,
401 GL_RENDERBUFFER, rbo->numSamples, rbo->internalFormat.format,
501 if (db.isKnownFormat(image->internalFormat))
503 const FormatFlags flags = db.getFormatInfo(image->internalFormat);
583 if (m_formats.isKnownFormat(it->second->internalFormat))
585 const FormatFlags flags = m_formats.getFormatInfo(it->second->internalFormat);
588 errorDescription = "Format " + de::toString(it->second->internalFormat) + " is not a valid format for a texture";
590 else if (it->second->internalFormat.unsizedType == GL_NONE)
593 errorDescription = "Format " + de::toString(it->second->internalFormat) + " does not exist";
598 errorDescription = "Format " + de::toString(it->second->internalFormat) + " is not a legal format";
611 if (m_formats.isKnownFormat(it->second->internalFormat))
613 const FormatFlags flags = m_formats.getFormatInfo(it->second->internalFormat);
616 const std::string reason = "Format " + de::toString(it->second->internalFormat) + " is not a valid format for a renderbuffer";
622 const std::string reason = "Internal format " + de::toString(it->second->internalFormat) + " does not exist";
685 const GLenum type = img.internalFormat.unsizedType;
686 logField(log, "Internal format", getTextureFormatName(img.internalFormat.format));