Home | History | Annotate | Download | only in hwui

Lines Matching refs:Glop

19 #include "Glop.h"
61 GlopBuilder::GlopBuilder(RenderState& renderState, Caches& caches, Glop* outGlop)
599 void verify(const ProgramDescription& description, const Glop& glop) {
600 if (glop.fill.texture.texture != nullptr) {
605 || ((glop.mesh.vertices.attribFlags & VertexAttribFlags::TextureCoord) == 0
608 glop.fill.texture.texture,
610 glop.mesh.vertices.attribFlags);
614 || ((glop.mesh.vertices.attribFlags & VertexAttribFlags::TextureCoord) != 0)),
617 glop.mesh.vertices.attribFlags);
620 if ((glop.mesh.vertices.attribFlags & VertexAttribFlags::Alpha)
621 && glop.mesh.vertices.bufferObject) {
625 if (description.hasTextureTransform != (glop.fill.texture.textureTransform != nullptr)) {
684 void GlopBuilder::dump(const Glop& glop) {
685 ALOGD("Glop Mesh");
686 const Glop::Mesh& mesh = glop.mesh;
690 const Glop::Mesh::Vertices& vertices = glop.mesh.vertices;
696 ALOGD("Glop Fill");
697 const Glop::Fill& fill = glop.fill;
713 ALOGD("Glop transform");
714 glop.transform.modelView.dump(" model view");
715 glop.transform.canvas.dump(" canvas");
716 ALOGD_IF(glop.transform.transformFlags, " transformFlags 0x%x", glop.transform.transformFlags);
718 ALOGD_IF(glop.roundRectClipState, "Glop RRCS %p", glop.roundRectClipState);
720 ALOGD("Glop blend %d %d", glop.blend.src, glop.blend.dst);
722 ALOGD("Glop bounds " RECT_STRING, RECT_ARGS(glop.bounds));