Home
last modified time | relevance | path

Searched refs:indexed (Results 1 – 25 of 553) sorted by relevance

12345678910>>...23

/third_party/skia/src/gpu/d3d/
DGrD3DCommandSignature.h22 static sk_sp<GrD3DCommandSignature> Make(GrD3DGpu* gpu, ForIndexed indexed, unsigned int slot);
24 bool isCompatible(ForIndexed indexed, unsigned int slot) const { in isCompatible() argument
25 return (fIndexed == indexed && fSlot == slot); in isCompatible()
40 GrD3DCommandSignature(gr_cp<ID3D12CommandSignature> commandSignature, ForIndexed indexed, in GrD3DCommandSignature() argument
43 , fIndexed(indexed) in GrD3DCommandSignature()
DGrD3DCommandSignature.cpp14 bool indexed = (forIndexed == ForIndexed::kYes); in Make() local
16 argumentDesc.Type = indexed ? D3D12_INDIRECT_ARGUMENT_TYPE_DRAW_INDEXED in Make()
21 commandSigDesc.ByteStride = indexed ? sizeof(D3D12_DRAW_INDEXED_ARGUMENTS) in Make()
/third_party/elfutils/tests/
Drun-ranlib-test2.sh22 indexed=${indexed:-testfile19.index}
24 testfiles $original $indexed
35 cmp $original $indexed
/third_party/flutter/skia/third_party/externals/libwebp/extras/
Dextras.c117 int WebPImportColorMappedARGB(const uint8_t* indexed, int indexed_stride, in WebPImportColorMappedARGB() argument
124 if (pic == NULL || indexed == NULL || indexed_stride < pic->width || in WebPImportColorMappedARGB()
134 if (indexed[x] >= palette_size) { in WebPImportColorMappedARGB()
138 dst[x] = palette[indexed[x]]; in WebPImportColorMappedARGB()
140 indexed += indexed_stride; in WebPImportColorMappedARGB()
/third_party/rust/crates/unicode-width/scripts/
Dunicode.py265 self.indexed = []
272 for (i, existing) in enumerate(self.indexed):
277 self.entries.append(len(self.indexed))
278 self.indexed.append(bucket)
287 self.entries = list(map(lambda i: int(self.indexed[i].width()), self.entries))
288 del self.indexed
292 return self.indexed
/third_party/skia/third_party/externals/libwebp/extras/
Dextras.c118 int WebPImportColorMappedARGB(const uint8_t* indexed, int indexed_stride, in WebPImportColorMappedARGB() argument
125 if (pic == NULL || indexed == NULL || indexed_stride < pic->width || in WebPImportColorMappedARGB()
135 if (indexed[x] >= palette_size) { in WebPImportColorMappedARGB()
139 dst[x] = palette[indexed[x]]; in WebPImportColorMappedARGB()
141 indexed += indexed_stride; in WebPImportColorMappedARGB()
/third_party/skia/src/gpu/gl/
DGrGLExtensions.cpp85 bool indexed = false; in init() local
88 indexed = version >= GR_GL_VER(3, 0); in init()
92 indexed = version >= GR_GL_VER(2, 0); in init()
95 if (indexed) { in init()
/third_party/flutter/skia/src/gpu/gl/
DGrGLExtensions.cpp87 bool indexed = false; in init() local
90 indexed = version >= GR_GL_VER(3, 0); in init()
94 indexed = version >= GR_GL_VER(2, 0); in init()
97 if (indexed) { in init()
/third_party/skia/tests/
DGrMeshTest.cpp234 for (bool indexed : {false, true}) {
239 run_test(dContext, indexed ? "drawIndexedInstanced" : "drawInstanced",
242 helper->fIndexBuffer = indexed ? helper->getIndexBuffer() : nullptr;
280 GrPrimitiveType primitiveType = indexed ? GrPrimitiveType::kTriangles
284 if (indexed) {
302 for (bool indexed : {false, true}) {
307 run_test(dContext, (indexed) ? "drawIndexedIndirect" : "drawIndirect",
328 if (indexed) {
354 if (indexed) {
365 if (indexed) {
/third_party/vk-gl-cts/external/amber/src/tests/cases/
Ddraw_triangle_list_with_index_buffer_and_vertex_offset.vkscript81 draw arrays indexed TRIANGLE_LIST 0 6
90 draw arrays indexed TRIANGLE_LIST 4 6
100 draw arrays indexed TRIANGLE_LIST 8 6
111 draw arrays indexed TRIANGLE_LIST 12 6
/third_party/vk-gl-cts/doc/testspecs/GLES31/
Dfunctional.draw_buffers_indexed.txt41 non-indexed functions, then some draw buffer specific state with indexed
49 and changes that same state for second draw buffer using indexed functions.
53 non-indexed functions.
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_draw_buffers_blend.txt101 or for an individual draw buffer using the indexed versions of the
132 or for an individual draw buffer using the indexed versions of the
235 new entries for indexed access to the per draw buffer functions
263 2. What effect does using the non-indexed versions of the blend
264 function or equation entry-points have upon the new indexed per
268 indexed and non-indexed ColorMask interaction in issue 3. The
269 non-indexed versions of the functions will set all buffers to
291 tables and describe how non-indexed
/third_party/openGLES/extensions/ARB/
DARB_draw_buffers_blend.txt111 or for an individual draw buffer using the indexed versions of the
142 or for an individual draw buffer using the indexed versions of the
245 new entries for indexed access to the per draw buffer functions
273 2. What effect does using the non-indexed versions of the blend
274 function or equation entry-points have upon the new indexed per
278 indexed and non-indexed ColorMask interaction in issue 3. The
279 non-indexed versions of the functions will set all buffers to
301 tables and describe how non-indexed
/third_party/openGLES/extensions/AMD/
DAMD_draw_buffers_blend.txt91 or for an individual draw buffer using the indexed versions of the
125 or for an individual draw buffer using the indexed versions of the
208 and BLEND_EQUATION_ALPHA and adding new indexed versions as well.
262 3. What effect does using the non-indexed versions of the blend function
263 or equation entry-points have upon the new indexed per draw buffer
266 RESOLVED: Similar to the way EXT_draw_buffers2 handles the indexed
267 and non-indexed ColorMask interaction in issue 3. The non-indexed
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
DAMD_draw_buffers_blend.txt91 or for an individual draw buffer using the indexed versions of the
125 or for an individual draw buffer using the indexed versions of the
208 and BLEND_EQUATION_ALPHA and adding new indexed versions as well.
262 3. What effect does using the non-indexed versions of the blend function
263 or equation entry-points have upon the new indexed per draw buffer
266 RESOLVED: Similar to the way EXT_draw_buffers2 handles the indexed
267 and non-indexed ColorMask interaction in issue 3. The non-indexed
/third_party/flutter/skia/tests/
DGrMeshTest.cpp200 for (bool indexed : {false, true}) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
205 run_test(context, indexed ? "setIndexedInstanced" : "setInstanced", in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
207 auto idxbuff = indexed ? helper->getIndexBuffer() : nullptr; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
219 GrMesh mesh(indexed ? GrPrimitiveType::kTriangles in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
221 if (indexed) { in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
/third_party/vk-gl-cts/android/cts/main/vk-master-2019-03-01/
Ddraw.txt25 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw.triangle_list
26 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw.triangle_strip
27 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count.triangle_list
28 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count.triangle_strip
29 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_first_instance.triangle_list
30 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_first_instance.triangle_strip
31 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count_first_instance.triangle_list
32 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count_first_instance.triangle_strip
33 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_instanced.no_first_instance.triangle_li…
34 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_instanced.no_first_instance.triangle_st…
[all …]
/third_party/vk-gl-cts/android/cts/master/vk-master-2019-03-01/
Ddraw.txt25 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw.triangle_list
26 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw.triangle_strip
27 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count.triangle_list
28 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count.triangle_strip
29 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_first_instance.triangle_list
30 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_first_instance.triangle_strip
31 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count_first_instance.triangle_list
32 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_count_first_instance.triangle_strip
33 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_instanced.no_first_instance.triangle_li…
34 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_instanced.no_first_instance.triangle_st…
[all …]
/third_party/vk-gl-cts/android/cts/main/vksc-master/
Ddraw.txt34 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw.triangle_list
35 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw.triangle_strip
36 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_count.triangle_list
37 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_count.triangle_strip
38 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_param_count.triangle_list
39 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_param_count.triangle_strip
40 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_first_instance.triangle_list
41 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_first_instance.triangle_strip
42 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_count_first_instance.triangle_list
43 dEQP-VKSC.draw.indirect_draw.indexed.indirect_draw_count_first_instance.triangle_strip
[all …]
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_emit.h34 boolean indexed, int instance_id);
92 void r300_emit_vertex_arrays_swtcl(struct r300_context *r300, boolean indexed);
/third_party/gstreamer/gstreamer/docs/random/wtay/
Dtimecache13 overview of the indexed stream (where is sample N, where is
36 - API to control the indexing process, what gets indexed, how much,
90 seeking in a fully indexed stream:
/third_party/typescript/tests/baselines/reference/
DcollectionPatternNoError.types61 // The same bug as the above but using indexed accesses
62 // (won't surface directly unless unsound indexed access assignments are forbidden)
/third_party/vk-gl-cts/android/cts/main/vk-master-2021-03-01/
Ddraw.txt9 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count.triangle_list
10 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count.triangle_strip
11 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count_first_instance.triangle_list
12 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count_first_instance.triangle_str…
13 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count_instanced.no_first_instance…
14 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count_instanced.no_first_instance…
15 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count_instanced.first_instance.tr…
16 dEQP-VK.draw.renderpass.indirect_draw.indexed.indirect_draw_param_count_instanced.first_instance.tr…
/third_party/flutter/skia/third_party/externals/dawn/src/tests/unittests/validation/
DDrawIndirectValidationTests.cpp75 bool indexed) { in TestIndirectOffset() argument
83 if (indexed) { in TestIndirectOffset()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_compute_transforms.cpp68 if (args->base_vertex.indexed) { in get_indirect_draw_base_vertex_transform()
79 unsigned out_stride = sizeof(uint32_t) * ((args->base_vertex.indexed ? 5 : 4) + 4); in get_indirect_draw_base_vertex_transform()
84 nir_imm_int(&b, args->base_vertex.indexed ? -1 : 0)); in get_indirect_draw_base_vertex_transform()
90 if (args->base_vertex.indexed) in get_indirect_draw_base_vertex_transform()

12345678910>>...23