Lines Matching refs:verts
235 struct vertex verts[4]; in blitframebuffer_texture() local
255 memset(verts, 0, sizeof(verts)); in blitframebuffer_texture()
258 verts[0].x = -1.0F * flipX; in blitframebuffer_texture()
259 verts[0].y = -1.0F * flipY; in blitframebuffer_texture()
260 verts[1].x = 1.0F * flipX; in blitframebuffer_texture()
261 verts[1].y = -1.0F * flipY; in blitframebuffer_texture()
262 verts[2].x = 1.0F * flipX; in blitframebuffer_texture()
263 verts[2].y = 1.0F * flipY; in blitframebuffer_texture()
264 verts[3].x = -1.0F * flipX; in blitframebuffer_texture()
265 verts[3].y = 1.0F * flipY; in blitframebuffer_texture()
267 verts[0].tex[0] = s0; in blitframebuffer_texture()
268 verts[0].tex[1] = t0; in blitframebuffer_texture()
269 verts[0].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
270 verts[1].tex[0] = s1; in blitframebuffer_texture()
271 verts[1].tex[1] = t0; in blitframebuffer_texture()
272 verts[1].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
273 verts[2].tex[0] = s1; in blitframebuffer_texture()
274 verts[2].tex[1] = t1; in blitframebuffer_texture()
275 verts[2].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
276 verts[3].tex[0] = s0; in blitframebuffer_texture()
277 verts[3].tex[1] = t1; in blitframebuffer_texture()
278 verts[3].tex[2] = readAtt->Zoffset; in blitframebuffer_texture()
280 _mesa_buffer_sub_data(ctx, blit->buf_obj, 0, sizeof(verts), verts); in blitframebuffer_texture()