Skip to content

Commit 3d422b2

Browse files
committed
Wrap all MD files at 80 cols, minor cleanup of headers/indenting (flutter#8)
1 parent 14ec50a commit 3d422b2

File tree

7 files changed

+148
-38
lines changed

7 files changed

+148
-38
lines changed

impeller/README.md

+121-30
Large diffs are not rendered by default.

impeller/base/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# The Impeller Base Library
22

3-
Contains a number of utilities that should probably go in the base library in the buildroot but whose use is not extensive enough to warrant a move yet.
3+
Contains a number of utilities that should probably go in the base library in
4+
the buildroot but whose use is not extensive enough to warrant a move yet.

impeller/compiler/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# The Impeller Shader Compiler & Reflector
22

3-
Host side tooling that consumes [GLSL 4.60 (Core Profile)](https://www.khronos.org/registry/OpenGL/specs/gl/GLSLangSpec.4.60.pdf) shaders and generates libraries suitable for consumption by an Impeller backend. Along with said libraries, the reflector generates code and meta-data to construct rendering and compute pipelines at runtime.
3+
Host side tooling that consumes [GLSL 4.60 (Core
4+
Profile)](https://www.khronos.org/registry/OpenGL/specs/gl/GLSLangSpec.4.60.pdf)
5+
shaders and generates libraries suitable for consumption by an Impeller backend.
6+
Along with said libraries, the reflector generates code and meta-data to
7+
construct rendering and compute pipelines at runtime.

impeller/fixtures/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# The Impeller Fixtures Set
22

3-
Unlike other targets in the buildroot, all Impeller unit-tests use the same fixture set and are invoked using a single test harness (`impeller_unittest`). This is for convenience but also to make working with shader libraries easier.
3+
Unlike other targets in the buildroot, all Impeller unit-tests use the same
4+
fixture set and are invoked using a single test harness (`impeller_unittest`).
5+
This is for convenience but also to make working with shader libraries easier.

impeller/geometry/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
# The Impeller Geometry Library
22

3-
Set of utilities used by most graphics operations. While the utilities themselves are rendering backend agnostic, the layout and packing of the various POD structs is arranged such that these can be copied into device memory directly. The supported operations also mimic GLSL to some extent. For this reason, the Impeller shader compiler and reflector uses these utilities in generated code.
3+
Set of utilities used by most graphics operations. While the utilities
4+
themselves are rendering backend agnostic, the layout and packing of the various
5+
POD structs is arranged such that these can be copied into device memory
6+
directly. The supported operations also mimic GLSL to some extent. For this
7+
reason, the Impeller shader compiler and reflector uses these utilities in
8+
generated code.

impeller/image/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
The Impeller Image Library
1+
# The Impeller Image Library
22

3-
Set of utilities for working with texture information. The library is indepenent of the rendering subsystem.
3+
Set of utilities for working with texture information. The library is indepenent
4+
of the rendering subsystem.

impeller/playground/README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
The Impeller Playground
1+
# The Impeller Playground
22

3-
An extension of the testing fixtures set, provides utilities for interactive experimentation with the Impeller rendering subsystem. One the test author is satisfied with the behavior of component as verified in the playground, pixel test assertions can be added to before committing the new test case. Meant to provide a gentle-er on-ramp to testing Impeller components. The WSI in the playground allows for points at which third-party profiling and instrumentation tools can be used to examine isolated test cases.
3+
An extension of the testing fixtures set, provides utilities for interactive
4+
experimentation with the Impeller rendering subsystem. One the test author is
5+
satisfied with the behavior of component as verified in the playground, pixel
6+
test assertions can be added to before committing the new test case. Meant to
7+
provide a gentle-er on-ramp to testing Impeller components. The WSI in the
8+
playground allows for points at which third-party profiling and instrumentation
9+
tools can be used to examine isolated test cases.

0 commit comments

Comments
 (0)