Home
last modified time | relevance | path

Searched refs:shift_y (Results 1 - 6 of 6) sorted by relevance

/third_party/mesa3d/src/imgui/
H A Dimstb_truetype.h866 STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff);
876 STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint);
880 STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint);
891 STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
898 STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff);
900 STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph);
901 STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int glyph);
903 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
919 float shift_x, float shift_y, // translation applied to input vertices
2629 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, in
[all...]
/third_party/skia/third_party/externals/imgui/
H A Dimstb_truetype.h866 STBTT_DEF unsigned char *stbtt_GetCodepointBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint, int *width, int *height, int *xoff, int *yoff);
876 STBTT_DEF void stbtt_MakeCodepointBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int codepoint);
880 STBTT_DEF void stbtt_MakeCodepointBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int codepoint);
891 STBTT_DEF void stbtt_GetCodepointBitmapBoxSubpixel(const stbtt_fontinfo *font, int codepoint, float scale_x, float scale_y, float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
898 STBTT_DEF unsigned char *stbtt_GetGlyphBitmapSubpixel(const stbtt_fontinfo *info, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, int *width, int *height, int *xoff, int *yoff);
900 STBTT_DEF void stbtt_MakeGlyphBitmapSubpixel(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph);
901 STBTT_DEF void stbtt_MakeGlyphBitmapSubpixelPrefilter(const stbtt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int oversample_x, int oversample_y, float *sub_x, float *sub_y, int glyph);
903 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1);
919 float shift_x, float shift_y, // translation applied to input vertices
2629 STBTT_DEF void stbtt_GetGlyphBitmapBoxSubpixel(const stbtt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, in
[all...]
/third_party/ffmpeg/libavutil/
H A Dframe.c839 int shift_y = (i == 1 || i == 2) ? desc->log2_chroma_h : 0; in calc_cropping_offsets() local
856 offsets[i] = (frame->crop_top >> shift_y) * frame->linesize[i] + in calc_cropping_offsets()
/third_party/ffmpeg/libavcodec/
H A Dmpeg4videodec.c441 int shift_y = 16 - ctx->sprite_shift[0]; in mpeg4_decode_sprite_trajectory() local
445 if (shift_c < 0 || shift_y < 0 || in mpeg4_decode_sprite_trajectory()
446 FFABS( sprite_offset[0][i]) >= INT_MAX >> shift_y || in mpeg4_decode_sprite_trajectory()
448 FFABS( sprite_delta[0][i]) >= INT_MAX >> shift_y || in mpeg4_decode_sprite_trajectory()
449 FFABS( sprite_delta[1][i]) >= INT_MAX >> shift_y in mpeg4_decode_sprite_trajectory()
457 sprite_offset[0][i] *= 1 << shift_y; in mpeg4_decode_sprite_trajectory()
459 sprite_delta[0][i] *= 1 << shift_y; in mpeg4_decode_sprite_trajectory()
460 sprite_delta[1][i] *= 1 << shift_y; in mpeg4_decode_sprite_trajectory()
/third_party/glfw/deps/
H A Dnuklear.h11582 int glyph, float scale_x, float scale_y,float shift_x, float shift_y, in nk_tt_GetGlyphBitmapBoxSubpixel()
11595 if (iy0) *iy0 = nk_ifloorf((float)-y1 * scale_y + shift_y); in nk_tt_GetGlyphBitmapBoxSubpixel()
11597 if (iy1) *iy1 = nk_iceilf ((float)-y0 * scale_y + shift_y); in nk_tt_GetGlyphBitmapBoxSubpixel()
12046 float shift_x, float shift_y, int off_x, int off_y, int invert, in nk_tt__rasterize()
12084 e[n].y0 = (p[a].y * y_scale_inv + shift_y) * (float)vsubsample; in nk_tt__rasterize()
12086 e[n].y1 = (p[b].y * y_scale_inv + shift_y) * (float)vsubsample; in nk_tt__rasterize()
12214 float scale_x, float scale_y, float shift_x, float shift_y, in nk_tt_Rasterize()
12225 scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, alloc); in nk_tt_Rasterize()
12233 float shift_x, float shift_y, int glyph, struct nk_allocator *alloc) in nk_tt_MakeGlyphBitmapSubpixel()
12241 shift_y, in nk_tt_MakeGlyphBitmapSubpixel()
11581 nk_tt_GetGlyphBitmapBoxSubpixel(const struct nk_tt_fontinfo *font, int glyph, float scale_x, float scale_y,float shift_x, float shift_y, int *ix0, int *iy0, int *ix1, int *iy1) nk_tt_GetGlyphBitmapBoxSubpixel() argument
12044 nk_tt__rasterize(struct nk_tt__bitmap *result, struct nk_tt__point *pts, int *wcount, int windings, float scale_x, float scale_y, float shift_x, float shift_y, int off_x, int off_y, int invert, struct nk_allocator *alloc) nk_tt__rasterize() argument
12212 nk_tt_Rasterize(struct nk_tt__bitmap *result, float flatness_in_pixels, struct nk_tt_vertex *vertices, int num_verts, float scale_x, float scale_y, float shift_x, float shift_y, int x_off, int y_off, int invert, struct nk_allocator *alloc) nk_tt_Rasterize() argument
12231 nk_tt_MakeGlyphBitmapSubpixel(const struct nk_tt_fontinfo *info, unsigned char *output, int out_w, int out_h, int out_stride, float scale_x, float scale_y, float shift_x, float shift_y, int glyph, struct nk_allocator *alloc) nk_tt_MakeGlyphBitmapSubpixel() argument
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_cmd_buffer.c1074 uint32_t shift_y = shift_x + 4; in radv_compute_sample_locs_pixel() local
1077 sample_locs_pixel[sample_reg_idx] |= (pos_y & 0xf) << shift_y; in radv_compute_sample_locs_pixel()

Completed in 65 milliseconds