Update CONTRIBUTING.md

This commit is contained in:
Hermet Park 2023-09-20 11:52:18 +09:00 committed by GitHub
parent 99609c7968
commit b3b9fa37f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,9 +45,9 @@ If your change doesn't belong to any sub-modules, you can either replace this wi
The name should be written entirely in lowercase letters. The name should be written entirely in lowercase letters.
- e.g., build, doc, infra, common, sw_engine, gl_engine, svg_loader, examples, wasm, svg2png... - e.g., build, doc, infra, common, sw_engine, gl_engine, svg_loader, examples, wasm, svg2png...
- [Feature] indicates the primary function or feature you modified. Typically, this represents a file name. - [Feature] indicates the primary function or feature you modified. Typically, this represents a class or file name.
Retain the original file name, but please don't include any prefixes (e.g., "tvg") or suffixes (e.g., "Impl") here. This is an optional.
- e.g., Canvas, TaskScheduler, SvgLoader, SvgBuilder, SwRle, GlRenderer... - e.g., canvas, shape, paint, scene, picture, task-scheduler, loader, builder, ...
- [Title] provides a brief description of your change and should be encapsulated in a single sentence. - [Title] provides a brief description of your change and should be encapsulated in a single sentence.
- e.g., "Fixed a typo." - e.g., "Fixed a typo."
@ -75,7 +75,7 @@ Retain the original file name, but please don't include any prefixes (e.g., "tvg
Here's a sample commit message for clarity: Here's a sample commit message for clarity:
- common composite: Introduced path clipping feature - renderer/paint: Introduced path clipping feature
We've added a new method, Paint::composite(), to support various composite behaviors. This allows paints to interact with other paint instances based on the chosen composite method. Initially, we're introducing the "ClipPath" method for path-based clipping. We've added a new method, Paint::composite(), to support various composite behaviors. This allows paints to interact with other paint instances based on the chosen composite method. Initially, we're introducing the "ClipPath" method for path-based clipping.