Lines Matching refs:texConfig
852 GrPixelConfig texConfig = glTex->config(); in onTransferPixels() local
853 SkASSERT(this->caps()->isConfigTexturable(texConfig)); in onTransferPixels()
905 if (!this->glCaps().getTexImageFormats(texConfig, bufferAsConfig, &internalFormat, in onTransferPixels()
910 GL_CALL(PixelStorei(GR_GL_UNPACK_ALIGNMENT, config_alignment(texConfig))); in onTransferPixels()
1163 bool GrGLGpu::uploadTexData(GrPixelConfig texConfig, int texWidth, int texHeight, GrGLenum target, in uploadTexData() argument
1170 SkASSERT(this->caps()->isConfigTexturable(texConfig)); in uploadTexData()
1207 if (!this->glCaps().getTexImageFormats(texConfig, dataConfig, &internalFormat, &externalFormat, in uploadTexData()
1212 GrGLenum internalFormatForTexStorage = this->glCaps().configSizedInternalFormat(texConfig); in uploadTexData()
1313 GR_GL_CALL(interface, PixelStorei(GR_GL_UNPACK_ALIGNMENT, config_alignment(texConfig))); in uploadTexData()
1320 texConfig, *interface, caps, target, internalFormat, in uploadTexData()
1350 bool GrGLGpu::uploadCompressedTexData(GrPixelConfig texConfig, int texWidth, int texHeight, in uploadCompressedTexData() argument
1354 SkASSERT(this->caps()->isConfigTexturable(texConfig)); in uploadCompressedTexData()
1361 if (!caps.getCompressedTexImageFormats(texConfig, &internalFormat)) { in uploadCompressedTexData()
1371 return allocate_and_populate_compressed_texture(texConfig, *interface, caps, target, in uploadCompressedTexData()