Home
last modified time | relevance | path

Searched refs:fChannel (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/src/gpu/
DGrYUVATextureProxies.cpp106 int chanAsIdx = static_cast<int>(fYUVALocations[i].fChannel); in GrYUVATextureProxies()
108 case 'r': fYUVALocations[i].fChannel = SkColorChannel::kR; break; in GrYUVATextureProxies()
109 case 'g': fYUVALocations[i].fChannel = SkColorChannel::kG; break; in GrYUVATextureProxies()
110 case 'b': fYUVALocations[i].fChannel = SkColorChannel::kB; break; in GrYUVATextureProxies()
111 case 'a': fYUVALocations[i].fChannel = SkColorChannel::kA; break; in GrYUVATextureProxies()
/third_party/flutter/skia/gm/
Dwacky_yuv_formats.cpp119 yuvaIndices[0].fChannel = SkColorChannel::kR; // bc 16bit is stored in R16 format in setup_yuv_indices()
121 yuvaIndices[1].fChannel = SkColorChannel::kR; in setup_yuv_indices()
123 yuvaIndices[2].fChannel = SkColorChannel::kG; in setup_yuv_indices()
126 yuvaIndices[3].fChannel = SkColorChannel::kR; // bc 16bit is stored in R16 format in setup_yuv_indices()
134 yuvaIndices[0].fChannel = SkColorChannel::kG; in setup_yuv_indices()
136 yuvaIndices[1].fChannel = SkColorChannel::kB; in setup_yuv_indices()
138 yuvaIndices[2].fChannel = SkColorChannel::kR; in setup_yuv_indices()
140 yuvaIndices[3].fChannel = SkColorChannel::kA; in setup_yuv_indices()
145 yuvaIndices[0].fChannel = SkColorChannel::kR; in setup_yuv_indices()
147 yuvaIndices[1].fChannel = SkColorChannel::kG; in setup_yuv_indices()
[all …]
/third_party/skia/src/core/
DSkYUVAInfoLocation.h22 SkColorChannel fChannel = SkColorChannel::kA; member
25 return fPlane == that.fPlane && fChannel == that.fChannel;
/third_party/flutter/skia/include/core/
DSkYUVAIndex.h22 return this->fIndex == that.fIndex && this->fChannel == that.fChannel;
47 SkColorChannel fChannel; member
/third_party/flutter/skia/src/codec/
DSkCodecImageGenerator.cpp74 yuvaIndices[SkYUVAIndex::kY_Index].fChannel = SkColorChannel::kR; in onQueryYUVA8()
76 yuvaIndices[SkYUVAIndex::kU_Index].fChannel = SkColorChannel::kR; in onQueryYUVA8()
78 yuvaIndices[SkYUVAIndex::kV_Index].fChannel = SkColorChannel::kR; in onQueryYUVA8()
80 yuvaIndices[SkYUVAIndex::kA_Index].fChannel = SkColorChannel::kR; in onQueryYUVA8()
/third_party/skia/modules/skottie/src/effects/
DInvertEffect.cpp40 EffectBinder(jprops, *abuilder, this).bind(kChannel_Index, fChannel); in InvertEffectAdapter()
74 switch (static_cast<uint8_t>(fChannel)) { in onSync()
130 float fChannel = 0; member in skottie::internal::__anon26ba1dd10111::InvertEffectAdapter
DLevelsEffect.cpp132 .bind( kChannel_Index, fChannel ) in EasyLevelsEffectAdapter()
152 const auto channel = SkScalarTruncToInt(fChannel); in onSync()
169 ScalarValue fChannel = 1; // 1: RGB, 2: R, 3: G, 4: B, 5: A member in skottie::internal::__anone2c5ce240111::EasyLevelsEffectAdapter
/third_party/flutter/skia/src/gpu/effects/
DGrYUVtoRGBEffect.cpp116 _outer.yuvaIndex(0).fIndex, kChannelToChar[(int)_outer.yuvaIndex(0).fChannel], in onCreateGLSLInstance()
117 _outer.yuvaIndex(1).fIndex, kChannelToChar[(int)_outer.yuvaIndex(1).fChannel], in onCreateGLSLInstance()
118 _outer.yuvaIndex(2).fIndex, kChannelToChar[(int)_outer.yuvaIndex(2).fChannel]); in onCreateGLSLInstance()
129 kChannelToChar[(int)_outer.yuvaIndex(3).fChannel]); in onCreateGLSLInstance()
188 uint8_t chann = (uint8_t) this->yuvaIndex(i).fChannel; in onGetGLSLProcessorKey()
/third_party/flutter/skia/tests/
DYUVCacheTest.cpp43 yuvInfo.fYUVAIndices[i].fChannel = SkColorChannel::kR; in DEF_TEST()
/third_party/flutter/skia/modules/skottie/src/effects/
DLevelsEffect.cpp66 const auto channel = SkScalarTruncToInt(fChannel); in apply()
/third_party/skia/tools/gpu/
DYUVUtils.cpp97 yuva[c] = look_up(xy1, pmap, yuvaLocations[c].fChannel); in onGetPixels()
/third_party/skia/src/gpu/effects/
DGrYUVtoRGBEffect.cpp232 i, fLocations[i].fPlane, static_cast<int>(fLocations[i].fChannel)); in onDumpInfo()
/third_party/flutter/skia/src/image/
DSkImage_GpuBase.cpp276 switch (yuvaIndices[yuvaIndex].fChannel) { in MakeTempTextureProxies()