Home
last modified time | relevance | path

Searched defs:writeHalf (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/skia/src/gpu/graphite/
H A DUniformManager.h237 void writeHalf(float f) { this->write<SkSLType::kHalf >(&f); } in writeHalf() function
246 void writeHalf(const SkPMColor4f& c) { this->write<SkSLType::kHalf4>(c.vec()); } in writeHalf() function
247 void writeHalf(const SkRect& r) { this->write<SkSLType::kHalf4>(r.asScalars()); } in writeHalf() function
248 void writeHalf(const SkV4& v) { this->write<SkSLType::kHalf4>(v.ptr()); } in writeHalf() function
264 void writeHalf(const SkV3& v) { this->write<SkSLType::kHalf3>(v.ptr()); } in writeHalf() function
265 void writeHalf(const SkPoint3& p) { this->write<SkSLType::kHalf3>(&p); } in writeHalf() function
276 void writeHalf(const SkV2& v) { this->write<SkSLType::kHalf2>(v.ptr()); } in writeHalf() function
277 void writeHalf(const SkSize& s) { this->write<SkSLType::kHalf2>(&s); } in writeHalf() function
278 void writeHalf(const SkPoint& p) { this->write<SkSLType::kHalf2>(&p); } in writeHalf() function
289 void writeHalf(const SkM44& m) { in writeHalf() function
[all …]
H A DPipelineData.h293 template <typename T> void writeHalf(const T& t) { fUniformManager.writeHalf(t); } in writeHalf() function