Home
last modified time | relevance | path

Searched +full:fetch +full:- +full:depth (Results 1 – 25 of 456) sorted by relevance

12345678910>>...19

/third_party/glslang/.github/workflows/
Dcontinuous_integration.yml13 - master
17 runs-on: ${{matrix.os}}
19 fail-fast: false
21 os: [ubuntu-20.04]
25 - uses: actions/checkout@v2
26 - uses: actions/setup-python@v2
28 python-version: '3.7'
29 - name: Install Ubuntu Package Dependencies
31 sudo apt-get -qq update
32 sudo apt-get install -y clang-6.0
[all …]
Dcontinuous_deployment.yml9 # Github github-script action: https://github.com/actions/github-script
11 # Octokit front-end to the GitHub REST API: https://octokit.github.io/rest.js/v18
12 # Octokit endpoint methods: https://github.com/octokit/plugin-rest-endpoint-methods.js/tree/master/…
14 # TODO: Use actions/upload-artifact and actions/download-artifact to simplify deployment.
23 - master
27 runs-on: ${{matrix.os.genus}}
29 fail-fast: false
31 os: [{genus: ubuntu-20.04, family: linux}]
35 - uses: actions/checkout@v2
36 - uses: actions/setup-python@v2
[all …]
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm_sample.c20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
94 * Fetch the specified member of the lp_jit_texture structure.
96 * fetch the field's value. Otherwise, just emit the
111 LLVMBuilderRef builder = gallivm->builder; in draw_llvm_texture_member()
125 indices[2] = LLVMBuildAdd(gallivm->builder, indices[2], texture_unit_offset, ""); in draw_llvm_texture_member()
126 …LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntULT, indices[2], lp_build_const_int32(g… in draw_llvm_texture_member()
127 …indices[2] = LLVMBuildSelect(gallivm->builder, cond, indices[2], lp_build_const_int32(gallivm, tex… in draw_llvm_texture_member()
146 * Fetch the specified member of the lp_jit_sampler structure.
148 * fetch the field's value. Otherwise, just emit the
162 LLVMBuilderRef builder = gallivm->builder; in draw_llvm_sampler_member()
[all …]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_tex_sample.c20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
33 * - TGSI -> LLVM translation (i.e., lp_build_tgsi_soa)
34 * - texture sampling code generation (i.e., lp_build_sample_soa)
35 * - LLVM pipe driver
102 * Fetch the specified member of the lp_jit_texture structure.
104 * fetch the field's value. Otherwise, just emit the
119 LLVMBuilderRef builder = gallivm->builder; in lp_llvm_texture_member()
133 indices[2] = LLVMBuildAdd(gallivm->builder, indices[2], texture_unit_offset, ""); in lp_llvm_texture_member()
134 …LLVMValueRef cond = LLVMBuildICmp(gallivm->builder, LLVMIntULT, indices[2], lp_build_const_int32(g… in lp_llvm_texture_member()
135 …indices[2] = LLVMBuildSelect(gallivm->builder, cond, indices[2], lp_build_const_int32(gallivm, tex… in lp_llvm_texture_member()
[all …]
/third_party/typescript_eslint/tools/
Dgenerate-contributors.ts1 // this script uses the github api to fetch a list of contributors
2 // https://developer.github.com/v3/repos/#list-contributors
6 import 'isomorphic-fetch';
13 'semantic-release-bot',
18 const contributorsApiUrl = `https://api.github.com/repos/typescript-eslint/typescript-eslint/contri…
42 const response = await fetch(`${contributorsApiUrl}&page=${page}`, {
62 - there wasn't 100 users in the page, or
63 - there wasn't 100 users with > threshold commits in the page.
65 In either case, it means that there's no need to fetch any more pages
74 // fetch all of the contributor info
[all …]
/third_party/typescript/.github/workflows/
Dsync-branch.yaml5 types: sync-branch
14 runs-on: ubuntu-latest
17 - name: Use node version 12.x
18 uses: actions/setup-node@v1
20 node-version: 12.x
21 - uses: actions/checkout@v2
24 fetch-depth: 0
25 # This does a test post-merge and only pushes the result if the test succeeds
27 # branch_name - the target branch
28 - run: |
[all …]
Dcodeql.yml1 name: "Code scanning - action"
7 - cron: '0 19 * * 0'
10 CodeQL-Build:
12 # CodeQL runs on ubuntu-latest and windows-latest
13 runs-on: ubuntu-latest
16 - name: Checkout repository
19 # We must fetch at least the immediate parents so that if this is
21 fetch-depth: 2
25 - run: git checkout HEAD^2
29 - name: Initialize CodeQL
[all …]
/third_party/vk-gl-cts/external/openglcts/docs/specs/
DCTS_ARB_post_depth_coverage.txt24 - OpenGL 4.5 Core Profile specification,
25 - ARB_post_depth_coverage extension specification.
55 Prepare multisample framebuffer with integer color and depth attachments
67 Turn on depth test.
78 The figure shall be placed at near view (eg. depth equal 0.25).
83 previous polygon (eg. at depth equal to 0.75). Do not use post depth
86 Turn off depth test.
96 using the second program and draw call. Fetch value of gl_SampleMaskIn
100 Repeat the test using post depth coverage layout for the second draw
104 Repeat both test cases substituting the depth test with the stencil
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DTextureFunctionHLSL.cpp3 // Use of this source code is governed by a BSD-style license that can be
41 << "Offset)), 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
48 out << " " << texCoordOutName << " = clamp(texCoordInt, 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
56 out << " float coordWrapped = 1.0 - abs(frac(abs(" << texCoordOutName in OutputIntTexCoordWrap()
57 << "Offset) * 0.5) * 2.0 - 1.0);\n"; in OutputIntTexCoordWrap()
75 // Convert from normalized floating-point to integer in OutputIntTexCoordWraps()
101 *texCoordZ = ImmutableString("int(max(0, min(layers - 1, floor(0.5 + t.z))))"); in OutputIntTexCoordWraps()
108 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "offset.z", "tiz"); in OutputIntTexCoordWraps()
112 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "0", "tiz"); in OutputIntTexCoordWraps()
129 textureFunction.method == TextureFunctionHLSL::TextureFunction::FETCH) in OutputHLSL4SampleFunctionPrefix()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DTextureFunctionHLSL.cpp3 // Use of this source code is governed by a BSD-style license that can be
41 << "Offset)), 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
48 out << " " << texCoordOutName << " = clamp(texCoordInt, 0, int(" << size << ") - 1);\n"; in OutputIntTexCoordWrap()
56 out << " float coordWrapped = 1.0 - abs(frac(abs(" << texCoordOutName in OutputIntTexCoordWrap()
57 << "Offset) * 0.5) * 2.0 - 1.0);\n"; in OutputIntTexCoordWrap()
75 // Convert from normalized floating-point to integer in OutputIntTexCoordWraps()
101 *texCoordZ = ImmutableString("int(max(0, min(layers - 1, floor(0.5 + t.z))))"); in OutputIntTexCoordWraps()
108 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "offset.z", "tiz"); in OutputIntTexCoordWraps()
112 OutputIntTexCoordWrap(out, "wrapR", "depth", *texCoordZ, "0", "tiz"); in OutputIntTexCoordWraps()
129 textureFunction.method == TextureFunctionHLSL::TextureFunction::FETCH) in OutputHLSL4SampleFunctionPrefix()
[all …]
/third_party/python/PCbuild/
Dget_externals.bat3 rem Simple script to fetch source for external libraries
15 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
16 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts
17 if "%~1"=="--no-libffi" (set IncludeLibffi=false) & shift & goto CheckOpts
18 if "%~1"=="--tkinter-src" (set IncludeTkinterSrc=true) & shift & goto CheckOpts
19 if "%~1"=="--openssl-src" (set IncludeSSLSrc=true) & shift & goto CheckOpts
20 if "%~1"=="--libffi-src" (set IncludeLibffiSrc=true) & shift & goto CheckOpts
21 if "%~1"=="--python" (set PYTHON=%2) & shift & shift & goto CheckOpts
22 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts
23 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts
[all …]
/third_party/skia/docker/skia-wasm-release/
DDockerfile2 FROM gcr.io/skia-public/emsdk-base:prod as builder
4 RUN apt-get update && apt-get upgrade -y && apt-get install -y \
6 libfreetype6-dev
9 && git clone --depth 1 'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
13 # Checkout Skia using fetch from depot_tools
14 RUN mkdir -p /tmp/skia \
16 && fetch skia
19 # https://skia-review.googlesource.com/c/buildbot/+/286537/5/docker/Dockerfile#46
26 RUN if [ -z "${HASH}" ] ; then echo "HASH must be specified as a --build-arg"; exit 1; fi
29 && git fetch \
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARM/
DARM_shader_framebuffer_fetch.txt16 Jan-Harald Fredriksen (jan-harald.fredriksen 'at' arm.com)
44 data as input. This permits use-cases such as programmable blending,
46 fixed-function blending.
73 New Built-in Variables
80 built-in varying variables include [...]" and add:
82 "These built-in varying variables include the fragment's position, eye z
83 coordinate, and front-facing flag, as well as the current color value in the
97 fixed-point color components. Undefined results are produced if a shader
100 that is not unsigned normalized fixed-point. No error is generated in this
105 "Per-sample fetch can be used to specify that reads of current values from
[all …]
/third_party/openGLES/extensions/ARM/
DARM_shader_framebuffer_fetch.txt16 Jan-Harald Fredriksen (jan-harald.fredriksen 'at' arm.com)
44 data as input. This permits use-cases such as programmable blending,
46 fixed-function blending.
73 New Built-in Variables
80 built-in varying variables include [...]" and add:
82 "These built-in varying variables include the fragment's position, eye z
83 coordinate, and front-facing flag, as well as the current color value in the
97 fixed-point color components. Undefined results are produced if a shader
100 that is not unsigned normalized fixed-point. No error is generated in this
105 "Per-sample fetch can be used to specify that reads of current values from
[all …]
/third_party/mesa3d/src/gallium/drivers/swr/
Dswr_tex_sample.cpp20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
37 * - TGSI -> LLVM translation (i.e., lp_build_tgsi_soa)
38 * - texture sampling code generation (i.e., lp_build_sample_soa)
39 * - SWR driver
93 * Fetch the specified member of the lp_jit_texture structure.
95 * fetch the field's value. Otherwise, just emit the
109 LLVMBuilderRef builder = gallivm->builder; in swr_texture_member()
120 switch (dynamic->shader_type) { in swr_texture_member()
160 * fetch the members of lp_jit_texture to fulfill the sampler code
187 SWR_TEXTURE_MEMBER(depth, TRUE) in SWR_TEXTURE_MEMBER()
[all …]
/third_party/openGLES/extensions/ARB/
DARB_texture_multisample.txt15 Copyright (c) 2009-2014 The Khronos Group Inc. Copyright terms at
20 Khronos-approved extension specifications are updated in response to
48 textures" - two-dimensional and two-dimensional array - as well as
49 mechanisms to fetch a specific sample from such a texture in a shader,
67 sizei width, sizei height, sizei depth,
138 ----------------------------------------- ------------
157 Additionally, this fetch may only be performed on a multisample
158 texture sampler. No other sample or fetch commands may be performed
187 for a one or two-dimensional, one- or two-dimensional array,
188 two-dimensional multisample, or two-dimensional multisample array
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_texture_multisample.txt15 Copyright (c) 2009-2014 The Khronos Group Inc. Copyright terms at
38 textures" - two-dimensional and two-dimensional array - as well as
39 mechanisms to fetch a specific sample from such a texture in a shader,
57 sizei width, sizei height, sizei depth,
128 ----------------------------------------- ------------
147 Additionally, this fetch may only be performed on a multisample
148 texture sampler. No other sample or fetch commands may be performed
177 for a one or two-dimensional, one- or two-dimensional array,
178 two-dimensional multisample, or two-dimensional multisample array
179 texture, and the maximum allowable height of a two-dimensional,
[all …]
/third_party/json/.github/workflows/
Dcodeql-analysis.yml1 name: "Code scanning - action"
10 - cron: '0 19 * * 1'
13 CodeQL-Build:
15 runs-on: ubuntu-latest
18 - name: Checkout repository
21 # We must fetch at least the immediate parents so that if this is
23 fetch-depth: 2
27 - run: git checkout HEAD^2
31 - name: Initialize CodeQL
32 uses: github/codeql-action/init@v1
[all …]
/third_party/skia/third_party/externals/angle2/extensions/
DANGLE_texture_multisample.txt43 This extension provides support for a new type of texture -
44 two-dimensional multisample textures - as well as mechanisms to
58 * An API to query the texture's level-of-detail information for various
152 ----------------------------------------- ------------
170 of the texel fetch in the following cases is zero. If robust buffer
171 access is not enabled, the result of the texel fetch is undefined if
185 texture sampler. No other sample or fetch commands may be performed
202 location (x, y) is returned as two floating-point values in (val[0],
204 represent a location in pixel space at which depth and associated
227 The texture object name space, including the initial two- and
[all …]
/third_party/flutter/skia/third_party/externals/angle2/extensions/
DANGLE_texture_multisample.txt43 This extension provides support for a new type of texture -
44 two-dimensional multisample textures - as well as mechanisms to
58 * An API to query the texture's level-of-detail information for various
152 ----------------------------------------- ------------
170 of the texel fetch in the following cases is zero. If robust buffer
171 access is not enabled, the result of the texel fetch is undefined if
185 texture sampler. No other sample or fetch commands may be performed
202 location (x, y) is returned as two floating-point values in (val[0],
204 represent a location in pixel space at which depth and associated
227 The texture object name space, including the initial two- and
[all …]
/third_party/elfio/.github/workflows/
Dcodeql-analysis.yml10 - cron: '0 15 * * 5'
15 runs-on: ubuntu-latest
18 fail-fast: false
24 …b.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning…
27 - name: Checkout repository
30 # We must fetch at least the immediate parents so that if this is
32 fetch-depth: 2
36 - run: git checkout HEAD^2
40 - name: Initialize CodeQL
41 uses: github/codeql-action/init@v1
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArrayImageTextureSize.hpp3 /*-------------------------------------------------------------------------
5 * -----------------------------
7 * Copyright (c) 2014-2016 The Khronos Group Inc.
13 * http://www.apache.org/licenses/LICENSE-2.0
24 */ /*-------------------------------------------------------------------*/
28 * \brief texture_cube_map_array extension - Texture Size Test (Test 10)
29 */ /*-------------------------------------------------------------------*/
38 * Make sure shaders can correctly query the size of cube-map array textures
44 * Priority: Must-have.
47 * return correct values for cube-map array textures.
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/
Dgit.go7 // http://www.apache.org/licenses/LICENSE-2.0
73 // Commit calls 'git commit -m <msg> --author <author>'.
77 args = append(args, "-c", "user.name="+flags.Name)
80 args = append(args, "-c", "user.email="+flags.Email)
82 args = append(args, "commit", "-m", msg)
96 f, err := ioutil.TempFile("", "regres-cookies.txt")
108 args = append(args, "-c", "http.cookiefile="+f.Name())
114 // CheckoutRemoteBranch performs a git fetch and checkout of the given branch into path.
123 {"fetch", "origin", "--depth=1", branch},
135 // CheckoutRemoteCommit performs a git fetch and checkout of the given commit into path.
[all …]
/third_party/node/deps/npm/lib/config/
Ddefaults.js12 var hasUnicode = require('has-unicode')
48 if (type.indexOf(url) !== -1) type = url
49 else if (type.indexOf(path) !== -1) type = path
82 else home = path.resolve(temp, 'npm-' + uidOrPid)
84 var cacheExtra = process.platform === 'win32' ? 'npm-cache' : '.npm'
95 // c:\node\node.exe --> prefix=c:\node\
98 // /usr/local/bin/node --> prefix=/usr/local
109 'allow-same-version': false,
110 'always-auth': false,
113 'audit-level': 'low',
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_texture_multisample.txt43 This specification extends NV_gpu_program4 to support per-sample fetching
47 * The TXFMS sample fetch instruction.
69 sizei width, sizei height, sizei depth,
79 sizei width, sizei height, sizei depth,
91 sizei width, sizei height, sizei depth,
119 ---------------- --------------------- ----- ----- ------
127 ---------------- --------- ----- ----- ---
128 2DMS no - - - - -
129 ARRAY2DMS no - - - - -
135 a specified renderbuffer, two-dimensional multisample, or two-dimensional
[all …]

12345678910>>...19