Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Unified Diff: cc/output/color_lut_cache.cc

Issue 2696603003: color: Towards ColorTransform optimizations and code generation (Closed)
Patch Set: Keep fixing the windows build Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/gfx/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/color_lut_cache.cc
diff --git a/cc/output/color_lut_cache.cc b/cc/output/color_lut_cache.cc
index 612573d196b172c27c9fc8323e8c5d19cf3a6b23..aa22d50c0ec54cf5a310036f5a3c77139a975c24 100644
--- a/cc/output/color_lut_cache.cc
+++ b/cc/output/color_lut_cache.cc
@@ -76,7 +76,7 @@ unsigned int ColorLUTCache::MakeLUT(const gfx::ColorSpace& from,
samples[y].set_y(u * inverse);
samples[y].set_z(v * inverse);
}
- transform->transform(samples.data(), samples.size());
+ transform->Transform(samples.data(), samples.size());
T* lutp2 = lutp + lut_samples;
FloatToLUT(reinterpret_cast<float*>(samples.data()), lutp2,
lut_samples * 3);
« no previous file with comments | « no previous file | ui/gfx/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698