Changes between Initial Version and Version 1 of Ticket #17538, comment 11
- Timestamp:
- Nov 24, 2022, 3:05:10 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17538, comment 11
initial v1 3 3 haiku/headers/os/interface/View.h: 4 4 {{{#!cpp 5 void SetLineDashing( unsigned lengthsCount, float* lengths, float offset = 0.0);5 void SetLineDashing(float* lengths = nullptr, unsigned lengthsCount = 0, float offset = 0.0); 6 6 float LineDashOffset() const; 7 7 std::vector<float> LineDashLengths() const; 8 8 }}} 9 9 10 ''I do not know the preferred way of exchanging arrays, sorry.'' 11 10 12 Note that lengthsCount has a compile-time limit of 32 in agg. 11 12 ''I do not know the preferred way of exchanging arrays, sorry.''