Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Better wording
  • Loading branch information
bdero committed Dec 5, 2022
commit c917e708601535b524c8ad9963efe244d8c50b77
6 changes: 3 additions & 3 deletions impeller/scene/importer/vertices_builder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ void VerticesBuilder::WriteFBVertices(std::vector<fb::Vertex>& vertices) const {
}

/// @brief Reads a contiguous sequence of numeric components from `source` and
/// writes them to `destination` buffer as 32bit floats. Signed
/// SourceTypes convert to a range of -1 to 1, and unsigned SourceTypes
/// convert to a range of 0 to 1.
/// writes them to `destination` as 32bit floats. Signed SourceTypes
/// convert to a range of -1 to 1, and unsigned SourceTypes convert to a
/// range of 0 to 1.
template <typename SourceType>
static void WriteComponentsAsScalars(void* destination,
const void* source,
Expand Down