Home
last modified time | relevance | path

Searched refs:indexFormat (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/
DIndexSubTable.java39 private final int indexFormat; field in IndexSubTable
58 this.indexFormat = this.data.readUShort(Offset.indexSubHeader_indexFormat.offset); in IndexSubTable()
63 public int indexFormat() { in indexFormat() method in IndexSubTable
64 return this.indexFormat; in indexFormat()
130 + Integer.toHexString(this.lastGlyphIndex()) + "]" + ", format = " + this.indexFormat in toString()
144 private int indexFormat; field in IndexSubTable.Builder
148 public static Builder<? extends IndexSubTable> createBuilder(int indexFormat) { in createBuilder() argument
149 switch (indexFormat) { in createBuilder()
163 indexFormat)); in createBuilder()
182 int indexFormat = data.readUShort(indexSubTableOffset); in createBuilder() local
[all …]
DEblcTable.java386 indexSubTableBuilder.indexFormat()); in subSerialize()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
DDrawVertexAndIndexBufferOOBValidationTests.cpp30 wgpu::IndexFormat indexFormat; member
53 wgpu::IndexFormat indexFormat; member
255 renderPassEncoder.SetIndexBuffer(indexBuffer.buffer, indexBuffer.indexFormat, in TestRenderPassDrawIndexed()
459 IndexBufferDesc indexBufferDesc = {indexBuffer, params.indexFormat, in TEST_F()
497 auto indexFormat = wgpu::IndexFormat::Uint32; in TEST_F() local
513 IndexBufferDesc indexBufferDesc = {indexBuffer, indexFormat}; in TEST_F()
579 auto indexFormat = wgpu::IndexFormat::Uint32; in TEST_F() local
595 IndexBufferDesc indexBufferDesc = {indexBuffer, indexFormat}; in TEST_F()
612 wgpu::IndexFormat indexFormat = wgpu::IndexFormat::Uint32; in TEST_F() local
643 TestRenderPassDrawIndexed(pipeline, {indexBuffer12, indexFormat}, vertexBufferList, 12, in TEST_F()
[all …]
DRenderPipelineValidationTests.cpp801 for (wgpu::IndexFormat indexFormat : kIndexFormatTypes) { in TEST_F() local
806 descriptor.primitive.stripIndexFormat = indexFormat; in TEST_F()
814 for (wgpu::IndexFormat indexFormat : kIndexFormatTypes) { in TEST_F() local
819 descriptor.primitive.stripIndexFormat = indexFormat; in TEST_F()
821 if (indexFormat == wgpu::IndexFormat::Undefined) { in TEST_F()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-color-cbdt-table.hh146 HBUINT16 indexFormat; member
203 switch (u.header.indexFormat) in sanitize()
220 switch (u.header.indexFormat) in finish_subtable()
247 switch (u.header.indexFormat) in fill_missing_glyphs()
299 switch (u.header.indexFormat) in add_offset()
312 switch (u.header.indexFormat) in get_extents()
325 switch (u.header.indexFormat) in get_image_data()
340 u.header.indexFormat = index_format; in populate_header()
343 switch (u.header.indexFormat) in populate_header()
392 subtable->populate_header (old_header->indexFormat, in add_new_subtable()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DIndirectDrawMetadata.cpp162 void IndirectDrawMetadata::AddIndexedIndirectDraw(wgpu::IndexFormat indexFormat, in AddIndexedIndirectDraw() argument
168 switch (indexFormat) { in AddIndexedIndirectDraw()
DIndirectDrawMetadata.h110 void AddIndexedIndirectDraw(wgpu::IndexFormat indexFormat,
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DGPURenderBundleEncoder.cpp102 interop::GPUIndexFormat indexFormat, in setIndexBuffer() argument
112 !conv(f, indexFormat) || // in setIndexBuffer()
DGPURenderPassEncoder.cpp175 interop::GPUIndexFormat indexFormat, in setIndexBuffer() argument
184 !conv(f, indexFormat) || // in setIndexBuffer()
DGPURenderBundleEncoder.h52 interop::GPUIndexFormat indexFormat,
DGPURenderPassEncoder.h81 interop::GPUIndexFormat indexFormat,
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_draw.c944 SVGA3dSurfaceFormat indexFormat = xlate_index_format(range->indexWidth); in validate_index_buffer() local
947 indexFormat != svga->state.hw_draw.ib_format || in validate_index_buffer()
950 assert(indexFormat != SVGA3D_FORMAT_INVALID); in validate_index_buffer()
957 indexFormat, in validate_index_buffer()
966 indexFormat, in validate_index_buffer()
973 svga->state.hw_draw.ib_format = indexFormat; in validate_index_buffer()
/third_party/skia/src/sfnt/
DSkOTTable_EBLC.h92 SK_OT_USHORT indexFormat; //format of this indexSubTable member
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DRenderPipelineD3D12.cpp301 wgpu::IndexFormat indexFormat) { in ComputeIndexBufferStripCutValue() argument
307 switch (indexFormat) { in ComputeIndexBufferStripCutValue()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DStateManager11.h291 void setIndexBuffer(ID3D11Buffer *buffer, DXGI_FORMAT indexFormat, unsigned int offset);
419 bool syncIndexBuffer(ID3D11Buffer *buffer, DXGI_FORMAT indexFormat, unsigned int offset);
DStateManager11.cpp3247 DXGI_FORMAT indexFormat, in setIndexBuffer() argument
3250 if (syncIndexBuffer(buffer, indexFormat, offset)) in setIndexBuffer()
3257 DXGI_FORMAT indexFormat, in syncIndexBuffer() argument
3260 if (buffer != mAppliedIB || indexFormat != mAppliedIBFormat || offset != mAppliedIBOffset) in syncIndexBuffer()
3262 mRenderer->getDeviceContext()->IASetIndexBuffer(buffer, indexFormat, offset); in syncIndexBuffer()
3265 mAppliedIBFormat = indexFormat; in syncIndexBuffer()
DRenderer11.cpp2029 DXGI_FORMAT indexFormat = indexBuffer->getIndexFormat(); in drawLineLoop() local
2031 mStateManager.setIndexBuffer(d3dIndexBuffer.get(), indexFormat, offset); in drawLineLoop()
2109 DXGI_FORMAT indexFormat = indexBuffer->getIndexFormat(); in drawTriangleFan() local
2111 mStateManager.setIndexBuffer(d3dIndexBuffer.get(), indexFormat, offset); in drawTriangleFan()
/third_party/vk-gl-cts/external/amber/src/src/dawn/
Dengine_dawn.cc56 descriptor->indexFormat = ::dawn::IndexFormat::Uint32; in ComboVertexInputDescriptor()
91 ::dawn::IndexFormat indexFormat;
1022 GetDawnIndexFormat(*amber_index_format, &vertexInputDescriptor.indexFormat); in CreateRenderPipelineDescriptor()
/third_party/mesa3d/src/mesa/main/
Dteximage.c1740 const GLboolean indexFormat = (format == GL_COLOR_INDEX); in texture_formats_agree() local
1752 if (_mesa_is_color_format(internalFormat) && !colorFormat && !indexFormat) in texture_formats_agree()
/third_party/skia/third_party/externals/harfbuzz/perf/texts/
Den-words.txt5233 indexFormat