Lines Matching refs:verts
759 struct vertex verts[4]; in blitframebuffer_texture() local
781 memset(verts, 0, sizeof(verts)); in blitframebuffer_texture()
784 verts[0].x = -1.0F * flipX; in blitframebuffer_texture()
785 verts[0].y = -1.0F * flipY; in blitframebuffer_texture()
786 verts[1].x = 1.0F * flipX; in blitframebuffer_texture()
787 verts[1].y = -1.0F * flipY; in blitframebuffer_texture()
788 verts[2].x = 1.0F * flipX; in blitframebuffer_texture()
789 verts[2].y = 1.0F * flipY; in blitframebuffer_texture()
790 verts[3].x = -1.0F * flipX; in blitframebuffer_texture()
791 verts[3].y = 1.0F * flipY; in blitframebuffer_texture()
793 verts[0].tex[0] = s0; in blitframebuffer_texture()
794 verts[0].tex[1] = t0; in blitframebuffer_texture()
795 verts[0].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
796 verts[1].tex[0] = s1; in blitframebuffer_texture()
797 verts[1].tex[1] = t0; in blitframebuffer_texture()
798 verts[1].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
799 verts[2].tex[0] = s1; in blitframebuffer_texture()
800 verts[2].tex[1] = t1; in blitframebuffer_texture()
801 verts[2].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
802 verts[3].tex[0] = s0; in blitframebuffer_texture()
803 verts[3].tex[1] = t1; in blitframebuffer_texture()
804 verts[3].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
806 _mesa_buffer_sub_data(ctx, blit->buf_obj, 0, sizeof(verts), verts); in blitframebuffer_texture()