Searched refs:temp_points (Results 1 - 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | elbg.c | 56 int *temp_points; member 422 static void init_elbg(ELBGContext *av_restrict elbg, int *points, int *temp_points, in init_elbg() argument 432 memcpy(temp_points + i*dim, points + k*dim, dim * sizeof(*temp_points)); in init_elbg() 436 * the allocated size of temp_points will also need to be updated. */ in init_elbg() 437 init_elbg(elbg, temp_points, temp_points + numpoints / 8 * dim, in init_elbg() 439 do_elbg(elbg, temp_points, numpoints / 8, 2 * max_steps); in init_elbg() 491 ALLOCATE_IF_NECESSARY(temp_points, prod, 1) in avpriv_elbg_do() 494 init_elbg(elbg, points, elbg->temp_points, numpoint in avpriv_elbg_do() [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_draw.cpp | 752 ImVec2* temp_points = temp_normals + points_count; in AddPolyline() local 783 temp_points[0] = points[0] + temp_normals[0] * half_draw_size; in AddPolyline() 784 temp_points[1] = points[0] - temp_normals[0] * half_draw_size; in AddPolyline() 785 temp_points[(points_count-1)*2+0] = points[points_count-1] + temp_normals[points_count-1] * half_draw_size; in AddPolyline() 786 temp_points[(points_count-1)*2+1] = points[points_count-1] - temp_normals[points_count-1] * half_draw_size; in AddPolyline() 806 ImVec2* out_vtx = &temp_points[i2 * 2]; in AddPolyline() 849 _VtxWritePtr[0].pos = temp_points[i * 2 + 0]; _VtxWritePtr[0].uv = tex_uv0; _VtxWritePtr[0].col = col; // Left-side outer edge in AddPolyline() 850 _VtxWritePtr[1].pos = temp_points[i * 2 + 1]; _VtxWritePtr[1].uv = tex_uv1; _VtxWritePtr[1].col = col; // Right-side outer edge in AddPolyline() 860 _VtxWritePtr[1].pos = temp_points[i * 2 + 0]; _VtxWritePtr[1].uv = opaque_uv; _VtxWritePtr[1].col = col_trans; // Left-side outer edge in AddPolyline() 861 _VtxWritePtr[2].pos = temp_points[ in AddPolyline() [all...] |
/third_party/mesa3d/src/imgui/ |
H A D | imgui_draw.cpp | 693 ImVec2* temp_points = temp_normals + points_count; in AddPolyline() local 711 temp_points[0] = points[0] + temp_normals[0] * AA_SIZE; in AddPolyline() 712 temp_points[1] = points[0] - temp_normals[0] * AA_SIZE; in AddPolyline() 713 temp_points[(points_count-1)*2+0] = points[points_count-1] + temp_normals[points_count-1] * AA_SIZE; in AddPolyline() 714 temp_points[(points_count-1)*2+1] = points[points_count-1] - temp_normals[points_count-1] * AA_SIZE; in AddPolyline() 732 ImVec2* out_vtx = &temp_points[i2*2]; in AddPolyline() 752 _VtxWritePtr[1].pos = temp_points[i*2+0]; _VtxWritePtr[1].uv = uv; _VtxWritePtr[1].col = col_trans; in AddPolyline() 753 _VtxWritePtr[2].pos = temp_points[i*2+1]; _VtxWritePtr[2].uv = uv; _VtxWritePtr[2].col = col_trans; in AddPolyline() 762 temp_points[0] = points[0] + temp_normals[0] * (half_inner_thickness + AA_SIZE); in AddPolyline() 763 temp_points[ in AddPolyline() [all...] |
Completed in 9 milliseconds