HomeSort by relevance Sort by last modified time
    Searched defs:y_scale (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf_state.c 48 GLfloat y_scale, y_bias; local
57 y_scale = 1.0;
61 y_scale = -1.0;
68 sfv->viewport.m11 = v[MAT_SY] * y_scale;
71 sfv->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
gen6_viewport_state.c 73 GLfloat y_scale, y_bias; local
83 y_scale = 1.0;
86 y_scale = -1.0;
92 sfv->viewport.m11 = v[MAT_SY] * y_scale;
95 sfv->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
gen7_viewport_state.c 36 GLfloat y_scale, y_bias; local
54 y_scale = 1.0;
57 y_scale = -1.0;
63 vp->viewport.m11 = v[MAT_SY] * y_scale;
66 vp->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 48 GLfloat y_scale, y_bias; local
57 y_scale = 1.0;
61 y_scale = -1.0;
68 sfv->viewport.m11 = v[MAT_SY] * y_scale;
71 sfv->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
gen6_viewport_state.c 73 GLfloat y_scale, y_bias; local
83 y_scale = 1.0;
86 y_scale = -1.0;
92 sfv->viewport.m11 = v[MAT_SY] * y_scale;
95 sfv->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
gen7_viewport_state.c 36 GLfloat y_scale, y_bias; local
54 y_scale = 1.0;
57 y_scale = -1.0;
63 vp->viewport.m11 = v[MAT_SY] * y_scale;
66 vp->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
  /external/chromium_org/cc/quads/
texture_draw_quad.cc 95 float y_scale = static_cast<float>(quadTransform().matrix().getDouble(1, 1)); local
104 rect_f.Scale(x_scale, y_scale);
153 clipped_rect.Scale(1.0f / x_scale, 1.0f / y_scale);
  /external/chromium_org/chrome/browser/ui/views/panels/
taskbar_window_thumbnailer_win.cc 125 double y_scale = static_cast<double>(height) / capture_bitmap_->height(); local
126 double scale = std::min(x_scale, y_scale);
  /external/chromium_org/third_party/freetype/src/cff/
cffobjs.h 79 FT_Fixed y_scale; member in struct:CFF_GlyphSlotRec_
cffobjs.c 230 size->metrics.x_scale, size->metrics.y_scale,
237 FT_Pos x_scale, y_scale; local
243 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm );
248 y_scale = size->metrics.y_scale;
252 x_scale, y_scale, 0, 0 );
302 size->metrics.x_scale, size->metrics.y_scale,
309 FT_Pos x_scale, y_scale; local
315 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm )
    [all...]
  /external/freetype/src/cff/
cffobjs.h 79 FT_Fixed y_scale; member in struct:CFF_GlyphSlotRec_
cffobjs.c 234 size->metrics.x_scale, size->metrics.y_scale,
241 FT_Pos x_scale, y_scale; local
247 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm );
252 y_scale = size->metrics.y_scale;
256 x_scale, y_scale, 0, 0 );
306 size->metrics.x_scale, size->metrics.y_scale,
313 FT_Pos x_scale, y_scale; local
319 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm )
    [all...]
  /external/harfbuzz_ng/test/api/
test-font.c 368 int x_scale, y_scale; local
385 x_scale = y_scale = 13;
388 x_scale = y_scale = 13;
389 hb_font_get_scale (font, NULL, &y_scale);
390 g_assert_cmpint (y_scale, ==, 0);
391 x_scale = y_scale = 13;
392 hb_font_get_scale (font, &x_scale, &y_scale);
394 g_assert_cmpint (y_scale, ==, 0);
398 x_scale = y_scale = 13;
399 hb_font_get_scale (font, &x_scale, &y_scale);
    [all...]
  /external/chromium_org/cc/base/
math_util.cc 461 float y_scale = ScaleOnAxis(transform.matrix().getDouble(0, 1), local
464 return gfx::Vector2dF(x_scale, y_scale);
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.cc 676 double y_scale = static_cast<double>(rect.height()) / size().height(); local
677 cairo_scale(cr, x_scale, y_scale);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mc.c 158 const float y_scale = local
187 * ref.y *= y_scale
190 * ref.y /= y_scale
204 ureg_src(ref), ureg_imm1f(shader, y_scale));
209 ureg_src(ref), ureg_imm1f(shader, 1.0f / y_scale));
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mc.c 158 const float y_scale = local
187 * ref.y *= y_scale
190 * ref.y /= y_scale
204 ureg_src(ref), ureg_imm1f(shader, y_scale));
209 ureg_src(ref), ureg_imm1f(shader, 1.0f / y_scale));
  /external/chromium_org/chromeos/display/
output_configurator.h 51 float y_scale; member in struct:chromeos::OutputConfigurator::CoordinateTransformation
  /external/chromium_org/third_party/freetype/src/autofit/
aftypes.h 184 FT_Fixed y_scale; /* from font units to 1/64th device pixels */ member in struct:AF_ScalerRec_
195 (a)->y_scale == (b)->y_scale && \
afhints.c 578 FT_Fixed y_scale = hints->y_scale; local
639 hints->y_scale = y_scale;
669 point->oy = point->y = FT_MulFix( vec->y, y_scale ) + y_delta;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-font-private.hh 167 int y_scale; member in struct:hb_font_t
181 inline hb_position_t em_scale_y (int16_t v) { return em_scale (v, this->y_scale); }
190 if (unlikely (parent && parent->y_scale != y_scale))
191 return v * (int64_t) this->y_scale / this->parent->y_scale;
332 *y = y_scale;
  /external/freetype/src/autofit/
aftypes.h 185 FT_Fixed y_scale; /* from font units to 1/64th device pixels */ member in struct:AF_ScalerRec_
196 (a)->y_scale == (b)->y_scale && \
  /external/harfbuzz_ng/src/
hb-font-private.hh 167 int y_scale; member in struct:hb_font_t
181 inline hb_position_t em_scale_y (int16_t v) { return em_scale (v, this->y_scale); }
190 if (unlikely (parent && parent->y_scale != y_scale))
191 return v * (int64_t) this->y_scale / this->parent->y_scale;
332 *y = y_scale;
  /external/chromium_org/content/common/gpu/client/
gl_helper_unittests.cc 239 double y_scale = local
279 EXPECT_EQ(y_scale, 1.0);
282 EXPECT_LT(y_scale, 1.0);
288 EXPECT_EQ(y_scale, 1.0);
291 EXPECT_EQ(y_scale, 2.0);
305 EXPECT_TRUE(CheckScale(y_scale, y_samples, scaled_y))
306 << "y_scale = " << y_scale;
312 if (y_scale != 1.0) {
    [all...]
  /external/chromium_org/gpu/tools/compositor_model_bench/
shaders.cc 282 GLint y_scale = glGetUniformLocationARB(program, "y_widthScaleFactor"); local
284 glUniform1fARB(y_scale, 1.0);

Completed in 2063 milliseconds

1 2