Lines Matching defs:version
57 // new CanvasState::version.
80 SkCanvasState(int32_t version, SkCanvas* canvas) {
82 this->version = version;
89 * The version this struct was built with. This field must always appear
92 * compare the version numbers.
94 int32_t version;
289 // Currently there is only one possible version.
290 SkASSERT(SkCanvasState_v1::kVersion == state->version);
321 SkASSERT(!state || SkCanvasState_v1::kVersion == state->version);
322 // Upcast to the correct version of SkCanvasState. This avoids having a virtual destructor on
324 // instead uses the field "version" to determine how to behave.