• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/carbon/

Lines Matching defs:CGFloat

41 typedef float CGFloat;
140 m_imageBounds = CGRectMake( 0.0, 0.0, (CGFloat)CGImageGetWidth( m_image ), (CGFloat)CGImageGetHeight( m_image ) );
285 CGFloat m_width;
288 const CGFloat *m_lengths;
289 CGFloat *m_userLengths;
294 CGFloat* m_patternColorComponents;
302 CGFloat components[4] = { pen.GetColour().Red() / 255.0 , pen.GetColour().Green() / 255.0 ,
349 const CGFloat dashUnit = m_width < 1.0 ? 1.0 : m_width;
351 const CGFloat dotted[] = { dashUnit , dashUnit + 2.0 };
352 static const CGFloat short_dashed[] = { 9.0 , 6.0 };
353 static const CGFloat dashed[] = { 19.0 , 9.0 };
354 static const CGFloat dotted_dashed[] = { 9.0 , 6.0 , 3.0 , 3.0 };
363 m_userLengths = new CGFloat[ m_count ] ;
388 m_userLengths = new CGFloat[m_count];
409 m_patternColorComponents = new CGFloat[1] ;
421 m_patternColorComponents = new CGFloat[4] ;
550 m_patternColorComponents = new CGFloat[1] ;
560 CGFloat components[4] = { (CGFloat) color.red / 65536,
561 (CGFloat) color.green / 65536, (CGFloat) color.blue / 65536, 1 } ;
568 CGFloat components[4] = { brush.GetColour().Red() / 255.0 , brush.GetColour().Green() / 255.0 ,
579 m_patternColorComponents = new CGFloat[4] ;
592 m_patternColorComponents = new CGFloat[1] ;
617 static void CalculateShadingValues (void *info, const CGFloat *in, CGFloat *out);
625 CGFloat *m_gradientComponents;
689 void wxMacCoreGraphicsBrushData::CalculateShadingValues (void *info, const CGFloat *in, CGFloat *out)
691 CGFloat* colors = (CGFloat*) info ;
692 CGFloat f = *in;
702 static const CGFloat input_value_range [2] = { 0, 1 };
703 static const CGFloat output_value_ranges [8] = { 0, 1, 0, 1, 0, 1, 0, 1 };
704 m_gradientComponents = new CGFloat[8] ;