Home
last modified time | relevance | path

Searched refs:maxcol (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Dlower_blend_equation_advanced.cpp223 ir_variable *maxcol = f->make_temp(glsl_type::float_type, "__blend_maxcol"); in set_lum() local
227 f->emit(assign(maxcol, maxv3(color))); in set_lum()
232 if_tree(greater(maxcol, imm1(1)), in set_lum()
235 sub(maxcol, llum))))))); in set_lum()
/third_party/python/Lib/
Dcmd.py338 def print_topics(self, header, cmds, cmdlen, maxcol): argument
343 self.columnize(cmds, maxcol-1)
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DPixelRoutine.hpp90 …Float4 computeLum(Float4 &color, Float4 &lum, Float4 &mincol, Float4 &maxcol, Int4 &negative, Int4…
DPixelRoutine.cpp2080 Float4 PixelRoutine::computeLum(Float4 &color, Float4 &lum, Float4 &mincol, Float4 &maxcol, Int4 &n… in computeLum() argument
2087 As<Int4>(lum + ((color - lum) * (Float4(1.0f) - lum)) / (Float4(maxcol) - lum))) | in computeLum()
2105 Float4 maxcol = maxRGB(color); in setLum() local
2108 Int4 aboveOne = CmpGT(maxcol, Float4(1.0f)); in setLum()
2110 x = computeLum(color.x, lum, mincol, maxcol, negative, aboveOne); in setLum()
2111 y = computeLum(color.y, lum, mincol, maxcol, negative, aboveOne); in setLum()
2112 z = computeLum(color.z, lum, mincol, maxcol, negative, aboveOne); in setLum()
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_EXT_blend_operation_advanced/
Dadvanced_blend.txt593 float maxcol = maxv3(color);
597 if (maxcol > 1.0) {
598 color = lum + ((color-lum)*(1-lum)) / (maxcol-lum);
Dadvanced_blend.adoc669 float maxcol = maxv3(color);
673 if (maxcol > 1.0) {
674 color = lum + ((color-lum)*(1-lum)) / (maxcol-lum);
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineBlendOperationAdvancedTests.cpp470 float maxcol = maxv3(color); in clipColor() local
476 if (maxcol > 1.0) in clipColor()
478 color = lum + ((color - lum) * (1.0f - lum)) / (maxcol - lum); in clipColor()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineBlendOperationAdvancedTests.cpp470 float maxcol = maxv3(color); in clipColor() local
476 if (maxcol > 1.0) in clipColor()
478 color = lum + ((color - lum) * (1.0f - lum)) / (maxcol - lum); in clipColor()
/third_party/skia/third_party/externals/opengl-registry/extensions/KHR/
DKHR_blend_equation_advanced.txt338 float maxcol = maxv3(color);
342 if (maxcol > 1.0) {
343 color = lum + ((color-lum)*(1-lum)) / (maxcol-lum);
986 Fix ClipColor() equation where in the "if (maxcol > 1.0)" body the
/third_party/openGLES/extensions/KHR/
DKHR_blend_equation_advanced.txt348 float maxcol = maxv3(color);
352 if (maxcol > 1.0) {
353 color = lum + ((color-lum)*(1-lum)) / (maxcol-lum);
996 Fix ClipColor() equation where in the "if (maxcol > 1.0)" body the
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_blend_equation_advanced.txt510 float maxcol = maxv3(color);
514 if (maxcol > 1.0) {
515 color = lum + ((color-lum)*(1-lum)) / (maxcol-lum);
1702 "if (maxcol > 1.0)" body the "(color-lum)*lum"
/third_party/openGLES/extensions/NV/
DNV_blend_equation_advanced.txt510 float maxcol = maxv3(color);
514 if (maxcol > 1.0) {
515 color = lum + ((color-lum)*(1-lum)) / (maxcol-lum);
1702 "if (maxcol > 1.0)" body the "(color-lum)*lum"