Home
last modified time | relevance | path

Searched +full:glslang +full:- +full:master +full:- (Results 1 – 7 of 7) sorted by relevance

/external/deqp-deps/glslang/
DREADME.md1 Also see the Khronos landing page for glslang as a reference front end:
3 https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/
6 regarding the feature level of glslang.
8 glslang chapter
11 [![Build Status](https://travis-ci.org/KhronosGroup/glslang.svg?branch=master)](https://travis-ci.o…
12 …/status/q6fi9cb0qnhkla68/branch/master?svg=true)](https://ci.appveyor.com/project/Khronoswebmaster…
18 1. A GLSL/ESSL front-end for reference validation and translation of GLSL/ESSL into an AST.
20-end for translation of a broad generic HLL into the AST. See [issue 362](https://github.com/Khron…
22 3. A SPIR-V back end for translating the AST to SPIR-V.
24 4. A standalone wrapper, `glslangValidator`, that can be used as a command-line tool for the above.
[all …]
D.appveyor.yml2 # http://www.appveyor.com/docs/appveyor-yml
10 - x64
13 - Debug
14 - Release
18 - master
20 # Travis advances the master-tot tag to current top of the tree after
21 # each push into the master branch, because it relies on that tag to
22 # upload build artifacts to the master-tot release. This will cause
34 - C:/Python27/python.exe update_glslang_sources.py
35 - git clone https://github.com/google/googletest.git External/googletest
[all …]
D.travis.yml6 - linux
7 - osx
15- secure: aGFrgzyKp+84hKrGkxVWg8cHV61uqrKEHT38gfSQK6+WS4GfLOyH83p7WnsEBb7AMhzU7LMNFdvOFr6+NaMpVnqR…
17 - GLSLANG_BUILD_TYPE=Release
18 - GLSLANG_BUILD_TYPE=Debug
21 - clang
22 - gcc
28 - os: osx
32 - env: BUILD_NDK=ON
39 - master
[all …]
/external/vulkan-validation-layers/
DBUILD.md8 1. [Contributing](#contributing-to-the-repository)
9 1. [Repository Content](#repository-content)
10 1. [Repository Set-Up](#repository-set-up)
11 1. [Windows Build](#building-on-windows)
12 1. [Linux Build](#building-on-linux)
13 1. [Android Build](#building-on-android)
14 1. [MacOS build](#building-on-macos)
33 - *install_dir*`/lib` : The Vulkan validation layer libraries
34 - *install_dir*`/share/vulkan/explicit_layer.d` : The Vulkan validation layer
40 ## Repository Set-Up
[all …]
/external/deqp/external/
Dfetch_sources.py1 # -*- coding: utf-8 -*-
3 #-------------------------------------------------------------------------
5 # --------------------------------------
13 # http://www.apache.org/licenses/LICENSE-2.0
21 #-------------------------------------------------------------------------
53 # Remove read-only first
106 checksum_bytes = checksum.encode("utf-8")
146 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir)
160 raise Exception("%s doesn't contain single top-level directory" % self.filename)
240 proc = subprocess.Popen(['git', 'ls-remote', '--get-url', 'origin'], stdout=subprocess.PIPE)
[all …]
/external/vulkan-validation-layers/scripts/
Dupdate_deps.py3 # Copyright 2017 The Glslang Authors. All rights reserved.
11 # http://www.apache.org/licenses/LICENSE-2.0
19 # This script was heavily leveraged from KhronosGroup/glslang
23 Get and build dependent repositories using known-good commits.
26 -------
31 repository at a "known-good" commit in order to provide stability in
35 --------------------
39 Known-Good JSON Database
40 ------------------------
42 This program expects to find a file named "known-good.json" in the
[all …]
/external/deqp-deps/glslang/hlsl/
DhlslGrammar.cpp2 // Copyright (C) 2016-2018 Google, Inc.
40 // - through an argument: a type specifically appropriate to which rule it
42 // - through the return value: true/false to indicate whether or not it
58 namespace glslang { namespace
94 // -> maps to the IDENTIFIER spelled with the internal special name for 'this' in acceptIdentifier()
136 if (unitNode && !unitNode->getAsAggregate()) in acceptCompilationUnit()
321 // All initializer subtrees are put in their own aggregate node, making one top-level
322 // node for all the initializers. Each function created is a top-level node to grow
323 // into the passed-in nodeList.
325 // If 'nodeList' is passed in as non-null, it must be an aggregate to extend for
[all …]