/third_party/flutter/flutter/packages/flutter/test/painting/ |
D | box_painter_test.dart | 33 BorderSide interpolated = BorderSide.lerp(side2, side3, 0.2); 34 expect(interpolated.style, equals(BorderStyle.solid)); 35 expect(interpolated.color, equals(side2.color.withOpacity(0.8))); 37 interpolated = BorderSide.lerp(side3, side2, 0.2); 38 expect(interpolated.style, equals(BorderStyle.solid)); 39 expect(interpolated.color, equals(side2.color.withOpacity(0.2)));
|
/third_party/ffmpeg/libavfilter/ |
D | vf_lensfun.c | 323 float interpolated, new_x, new_y, d, norm; in distortion_correction_filter_slice() local 341 interpolated = 0.0f; in distortion_correction_filter_slice() 357 interpolated = 0.0f; in distortion_correction_filter_slice() 372 …interpolated += thread_data->data_in[(new_x_int + i - 2) * 3 + rgb_index + (new_y_int + j - 2) * t… in distortion_correction_filter_slice() 377 interpolated /= norm; in distortion_correction_filter_slice() 378 …dex + y * thread_data->linesize_out] = interpolated < 0.0f ? 0.0f : interpolated > 255.0f ? 255.0f… in distortion_correction_filter_slice() 395 interpolated = 0.0f; in distortion_correction_filter_slice() 411 interpolated = 0.0f; in distortion_correction_filter_slice() 426 …interpolated += thread_data->data_in[(new_x_int + i - 2) * 3 + rgb_index + (new_y_int + j - 2) * t… in distortion_correction_filter_slice() 431 interpolated /= norm; in distortion_correction_filter_slice() [all …]
|
D | af_adeclick.c | 35 double *interpolated; member 207 c->interpolated = av_calloc(s->window_size, sizeof(*c->interpolated)); in config_input() 209 !c->index || !c->interpolated || !c->acorrelation || !c->tmp) in config_input() 367 double *auxiliary, double *interpolated) in interpolation() argument 406 return do_interpolation(c, matrix, vector, nb_errors, interpolated); in interpolation() 523 double *interpolated = c->interpolated; in filter_channel() local 533 nb_errors, c->auxiliary, interpolated); in filter_channel() 541 dst[index[j]] = interpolated[j]; in filter_channel() 733 av_freep(&c->interpolated); in uninit()
|
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/effects/ |
D | DelayLineEffect.h | 50 float interpolated = fracComp * delayLine[index] + delayLine[index + 1] in operator() local 53 prevInterpolated = interpolated; in operator() 55 x = interpolated * kFeedForward + kBlend * delayInput; in operator()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_shader_noperspective_interpolation.txt | 55 While perspective-correct (smooth) and non-interpolated (flat) are the 79 For vertex shader outputs specified to be interpolated without 91 affect how they are interpolated. When neither keyword is specified, 106 affect how they are interpolated. When neither keyword is specified, 120 interpolated in the same fashion as described for basic polygon 203 "A variable qualified as "noperspective" must be interpolated linearly 215 interpolated value will be computed without perspective correction."
|
D | NV_fog_distance.txt | 46 be computed at each vertex and interpolated as other data are." 58 interpolated per-fragment. 68 and then interpolated per-fragment, then the scene must be 147 is permitted to be computed per-vertex, and then interpolated
|
D | NV_fragment_program4.txt | 52 rendering), or interpolated linearly in screen space. The set of input 93 available to a fragment program are the interpolated attributes of a 167 be interpolated as described in Chapter 3, with the exception that 173 An attribute variable declared as "CENTROID" will be interpolated using a 185 An attribute variable declared as "NOPERSPECTIVE" will be interpolated 188 not specified, attributes must be interpolated with perspective 222 interpolated clip distance, 238 Most attributes correspond to per-vertex attributes that are interpolated 245 to interpolated front or back vertex colors. 259 vertex processing. All interpolated fragment attributes should be read as [all …]
|
/third_party/openGLES/extensions/NV/ |
D | NV_shader_noperspective_interpolation.txt | 55 While perspective-correct (smooth) and non-interpolated (flat) are the 79 For vertex shader outputs specified to be interpolated without 91 affect how they are interpolated. When neither keyword is specified, 106 affect how they are interpolated. When neither keyword is specified, 120 interpolated in the same fashion as described for basic polygon 203 "A variable qualified as "noperspective" must be interpolated linearly 215 interpolated value will be computed without perspective correction."
|
D | NV_fog_distance.txt | 46 be computed at each vertex and interpolated as other data are." 58 interpolated per-fragment. 68 and then interpolated per-fragment, then the scene must be 147 is permitted to be computed per-vertex, and then interpolated
|
D | NV_fragment_program4.txt | 52 rendering), or interpolated linearly in screen space. The set of input 93 available to a fragment program are the interpolated attributes of a 167 be interpolated as described in Chapter 3, with the exception that 173 An attribute variable declared as "CENTROID" will be interpolated using a 185 An attribute variable declared as "NOPERSPECTIVE" will be interpolated 188 not specified, attributes must be interpolated with perspective 222 interpolated clip distance, 238 Most attributes correspond to per-vertex attributes that are interpolated 245 to interpolated front or back vertex colors. 259 vertex processing. All interpolated fragment attributes should be read as [all …]
|
/third_party/vk-gl-cts/doc/testspecs/GLES31/ |
D | functional.shaders.multisample_interpolation.txt | 56 integer literals at which samples values are interpolated, in dynamic cases the 61 will result in a value interpolated at the center of the pixel. Value is 88 interpolateAtCentroid() were interpolated within the primitive area. 103 same value as a per-sample interpolated varying.
|
D | functional.shaders.sample_variables.txt | 58 contains the position in which varyings were interpolated. Cases render a quad 60 values against a per-sample interpolated screen-space location (in pixels) 62 interpolated varying value.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_shader_multisample_interpolation.txt | 214 per-fragment values, typically interpolated from a previous stage's 266 is interpolated to the pixel's center and 274 samples in the pixel, but that value must be interpolated at a location 277 at which the variable is interpolated may be different in neighboring pixels, 280 non-centroid interpolated variables. If a fragment shader input is 290 Built-in interpolation functions are available to compute an interpolated 338 qualifier, the interpolated value will have the same value everywhere for 415 "the value is interpolated at the pixel's center", however GLSL 440 416 says "the value may be interpolated anywhere within the pixel. Which
|
/third_party/openGLES/extensions/OES/ |
D | OES_shader_multisample_interpolation.txt | 224 per-fragment values, typically interpolated from a previous stage's 276 is interpolated to the pixel's center and 284 samples in the pixel, but that value must be interpolated at a location 287 at which the variable is interpolated may be different in neighboring pixels, 290 non-centroid interpolated variables. If a fragment shader input is 300 Built-in interpolation functions are available to compute an interpolated 348 qualifier, the interpolated value will have the same value everywhere for 425 "the value is interpolated at the pixel's center", however GLSL 440 426 says "the value may be interpolated anywhere within the pixel. Which
|
/third_party/boost/libs/geometry/doc/generated/ |
D | line_interpolate.qbk | 19 Returns one or more points interpolated along a LineString using the specified strategy. 66 Returns one or more points interpolated along a LineString.
|
/third_party/vk-gl-cts/modules/internal/ |
D | ditFrameworkTests.cpp | 709 …TextureLevel interpolated (TextureFormat(TextureFormat::RGBA, TextureFormat::FLOAT), numSamples, w… in runCase() local 720 clear (interpolated.getAccess(), subCase.varying - Vec4(0.0f, 0.0f, 0.0f, 1.0f)); in runCase() 771 …s colorAccess = rr::MultisamplePixelBufferAccess::fromMultisampleAccess(interpolated.getAccess()); in runCase() 799 TextureLevel resolvedColor (interpolated.getFormat(), width, height); // For debugging in runCase() 802 const ConstPixelBufferAccess interpAccess = interpolated.getAccess(); in runCase() 812 …tAccess(), rr::MultisampleConstPixelBufferAccess::fromMultisampleAccess(interpolated.getAccess())); in runCase()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/WIN/ |
D | WIN_phong_shading.txt | 85 being interpolated, the normal (and the eye coordinate) are interpolated 90 interpolated along with the normal (and eye coordinate). However, for
|
/third_party/openGLES/extensions/WIN/ |
D | WIN_phong_shading.txt | 85 being interpolated, the normal (and the eye coordinate) are interpolated 90 interpolated along with the normal (and eye coordinate). However, for
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ATI/ |
D | ATI_pn_triangles.txt | 40 proper results, and the rest of the information per vertex is interpolated 124 cubically interpolated across the patch. Linear interpolation 128 interpolated linearly across the patch.
|
/third_party/openGLES/extensions/ATI/ |
D | ATI_pn_triangles.txt | 40 proper results, and the rest of the information per vertex is interpolated 124 cubically interpolated across the patch. Linear interpolation 128 interpolated linearly across the patch.
|
/third_party/openGLES/extensions/AMD/ |
D | AMD_compressed_ATC_texture.txt | 51 - A compression format for RGBA textures using interpolated alpha encoding. 146 10/24/2007 Benj Lipchak Add interpolated alpha RGBA format.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | AMD_compressed_ATC_texture.txt | 51 - A compression format for RGBA textures using interpolated alpha encoding. 146 10/24/2007 Benj Lipchak Add interpolated alpha RGBA format.
|
/third_party/python/Lib/ |
D | statistics.py | 668 interpolated = (data[j] * (n - delta) + data[j + 1] * delta) / n 669 result.append(interpolated) 678 interpolated = (data[j - 1] * (n - delta) + data[j] * delta) / n 679 result.append(interpolated)
|
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/ |
D | APPLE_clip_distance.txt | 93 interpolated using a weighted mean, with weights derived according to the 139 distances will be linearly interpolated across the primitive and the 140 portion of the primitive with interpolated distances less than 0 will
|
/third_party/openGLES/extensions/APPLE/ |
D | APPLE_clip_distance.txt | 93 interpolated using a weighted mean, with weights derived according to the 139 distances will be linearly interpolated across the primitive and the 140 portion of the primitive with interpolated distances less than 0 will
|