Searched refs:scale (Results 1 - 25 of 135) sorted by path

123456

/haiku/headers/libs/agg/
H A Dagg_ellipse.h48 void approximation_scale(double scale);
80 inline void ellipse::approximation_scale(double scale) argument
82 m_scale = scale;
H A Dagg_font_cache_manager.h310 double scale=1.0)
326 m_path_adaptor.init(gl->data, gl->data_size, x, y, scale);
308 init_embedded_adaptors(const glyph_cache* gl, double x, double y, double scale=1.0) argument
H A Dagg_path_storage_integer.h49 double scale=1.0) const
51 *x_ = dx + (double(x >> 1) / coord_scale) * scale;
52 *y_ = dy + (double(y >> 1) / coord_scale) * scale;
229 double dx, double dy, double scale=1.0)
236 m_scale = scale;
228 init(const int8u* data, unsigned size, double dx, double dy, double scale=1.0) argument
H A Dagg_renderer_outline_image.h268 int len, double scale, int x, int y) :
284 m_len(uround(len / scale))
286 double d = len * scale;
266 distance_interpolator4(int x1, int y1, int x2, int y2, int sx, int sy, int ex, int ey, int len, double scale, int x, int y) argument
H A Dagg_trans_viewport.h177 double scale() const function in class:agg::trans_viewport
/haiku/headers/libs/print/libprint/
H A DGraphicsDriver.h35 JobData::Orientation orientation, const BPoint* scale,
/haiku/headers/libs/udis86/libudis86/
H A Dtypes.h157 uint8_t scale; member in struct:ud_operand
/haiku/headers/os/interface/
H A DAffineTransform.h64 static BAffineTransform AffineScaling(double scale);
106 inline const BAffineTransform& ScaleBy(double scale);
108 double scale);
112 const BAffineTransform& ScaleBy(const BPoint& scale);
114 const BPoint& scale);
118 BAffineTransform ScaleByCopy(double scale) const;
120 double scale) const;
124 BAffineTransform ScaleByCopy(const BPoint& scale) const;
126 const BPoint& scale) const;
128 const BAffineTransform& SetScale(double scale);
[all...]
H A DRegion.h62 void ScaleBy(BSize scale);
/haiku/headers/private/app/
H A DServerProtocolStructs.h28 float scale; member in struct:ViewSetStateInfo
/haiku/src/add-ons/accelerants/radeon/
H A Dimpactv.c394 (tv_timing->h_active_len + tv_timing->h_active_delay) << (FIX_SHIFT - 1)) / tv_timing->scale;
H A Dset_mode.h40 uint32 scale; member in struct:__anon1236
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamDevice.h68 virtual status_t SetScale(float scale);
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/sonix/
H A DSonixCamDevice.h80 virtual status_t SetScale(float scale);
/haiku/src/add-ons/print/drivers/preview/
H A DPageSetupWindow.cpp181 BString scale; local
182 if (fSetupMsg->FindFloat("scale", &scale0) == B_OK)
183 scale << (int)scale0;
185 scale = "100";
187 fScaleControl = new BTextControl("scale", "Scale [%]:",
188 scale.String(), NULL);
252 float scale = atoi(fScaleControl->Text()); local
253 if (scale <= 0.0) scale = 100.0;
254 if (scale > 1000.
[all...]
/haiku/src/add-ons/screen_savers/flurry/
H A DShared.h58 #define RandBell(scale) (scale * (1.0f - (rand() + rand() + rand()) / ((float) RAND_MAX * 1.5f)))
H A DSpark.cpp66 float scale; local
79 scale = w/50.0f;
80 glScalef(scale,scale,0.0f);
/haiku/src/add-ons/screen_savers/leaves/
H A DLeaves.cpp222 float scale = fLeafSize / kLeafWidth / (kMaximumLeafSize * 2); local
223 scale *= view->Bounds().Width();
224 scale += scale * drand48() * fSizeVariation / 100.;
232 transform.ScaleBy(scale);
236 BPoint gradientOffset = BPoint(60 * scale, 80 * scale);
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLegendChartAxis.cpp52 float totalSize, double scale)
54 float position = (value - fRange.min) * scale - legendSize / 2;
87 double scale = (double)totalSize / rangeSize; local
98 (float)totalSize, scale);;
105 (float)totalSize, scale);;
280 double scale = (double)totalSize / rangeSize; local
307 float position = (info->value - fRange.min) * scale;
324 (float)totalSize, scale);;
51 _LegendPosition(double value, float legendSize, float totalSize, double scale) argument
H A DLegendChartAxis.h40 float totalSize, double scale);
H A DLineChartRenderer.cpp190 double scale = (double)fFrame.IntegerHeight() / sampleRange; local
199 bottom - ((info->samples[first] - minRange) * scale)));
203 float(bottom - ((info->samples[i] - minRange) * scale))));
/haiku/src/apps/glteapot/
H A Dteapot.h8 void auxSolidTeapot(GLdouble scale);
9 void auxWireTeapot(GLdouble scale);
/haiku/src/apps/icon-o-matic/generic/property/
H A DProperty.cpp78 Property::InterpolateTo(const Property* other, float scale) argument
199 IntProperty::InterpolateTo(const Property* other, float scale) argument
204 - fValue) * scale + 0.5));
334 FloatProperty::InterpolateTo(const Property* other, float scale) argument
338 return SetValue(fValue + (f->Value() - fValue) * scale);
453 UInt8Property::InterpolateTo(const Property* other, float scale) argument
458 - fValue) * scale + 0.5));
578 BoolProperty::InterpolateTo(const Property* other, float scale) argument
582 if (scale >= 0.5)
H A DProperty.h43 float scale);
82 float scale);
125 float scale);
166 float scale);
201 float scale);
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.cpp150 ColorProperty::InterpolateTo(const Property* other, float scale) argument
156 a.red = a.red + (uint8)floorf((b.red - a.red) * scale + 0.5);
157 a.green = a.green + (uint8)floorf((b.green - a.green) * scale + 0.5);
158 a.blue = a.blue + (uint8)floorf((b.blue - a.blue) * scale + 0.5);
159 a.alpha = a.alpha + (uint8)floorf((b.alpha - a.alpha) * scale + 0.5);

Completed in 265 milliseconds

123456