Lines Matching defs:temp_points
693 ImVec2* temp_points = temp_normals + points_count;
711 temp_points[0] = points[0] + temp_normals[0] * AA_SIZE;
712 temp_points[1] = points[0] - temp_normals[0] * AA_SIZE;
713 temp_points[(points_count-1)*2+0] = points[points_count-1] + temp_normals[points_count-1] * AA_SIZE;
714 temp_points[(points_count-1)*2+1] = points[points_count-1] - temp_normals[points_count-1] * AA_SIZE;
732 ImVec2* out_vtx = &temp_points[i2*2];
752 _VtxWritePtr[1].pos = temp_points[i*2+0]; _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col_trans;
753 _VtxWritePtr[2].pos = temp_points[i*2+1]; _VtxWritePtr[2].uv = uv; _VtxWritePtr[2].col = col_trans;
762 temp_points[0] = points[0] + temp_normals[0] * (half_inner_thickness + AA_SIZE);
763 temp_points[1] = points[0] + temp_normals[0] * (half_inner_thickness);
764 temp_points[2] = points[0] - temp_normals[0] * (half_inner_thickness);
765 temp_points[3] = points[0] - temp_normals[0] * (half_inner_thickness + AA_SIZE);
766 temp_points[(points_count-1)*4+0] = points[points_count-1] + temp_normals[points_count-1] * (half_inner_thickness + AA_SIZE);
767 temp_points[(points_count-1)*4+1] = points[points_count-1] + temp_normals[points_count-1] * (half_inner_thickness);
768 temp_points[(points_count-1)*4+2] = points[points_count-1] - temp_normals[points_count-1] * (half_inner_thickness);
769 temp_points[(points_count-1)*4+3] = points[points_count-1] - temp_normals[points_count-1] * (half_inner_thickness + AA_SIZE);
789 ImVec2* out_vtx = &temp_points[i2*4];
814 _VtxWritePtr[0].pos = temp_points[i*4+0]; _VtxWritePtr[0].uv = uv; _VtxWritePtr[0].col = col_trans;
815 _VtxWritePtr[1].pos = temp_points[i*4+1]; _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col;
816 _VtxWritePtr[2].pos = temp_points[i*4+2]; _VtxWritePtr[2].uv = uv; _VtxWritePtr[2].col = col;
817 _VtxWritePtr[3].pos = temp_points[i*4+3]; _VtxWritePtr[3].uv = uv; _VtxWritePtr[3].col = col_trans;