Home
last modified time | relevance | path

Searched refs:indexFormat (Results 1 - 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/
H A 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 in createBuilder()
206 Builder(int dataSize, int indexFormat) Builder() argument
211 Builder(int indexFormat, int imageFormat, int imageDataOffset, int dataSize) Builder() argument
250 public int indexFormat() { indexFormat() method in IndexSubTable.Builder
[all...]
H A DEblcTable.java386 indexSubTableBuilder.indexFormat()); in subSerialize()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A 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}, vertexBufferLis in TEST_F()
[all...]
H A DRenderPipelineValidationTests.cpp801 for (wgpu::IndexFormat indexFormat : kIndexFormatTypes) { in TEST_F()
806 descriptor.primitive.stripIndexFormat = indexFormat; in TEST_F()
814 for (wgpu::IndexFormat indexFormat : kIndexFormatTypes) { in TEST_F()
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/
H A 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()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DIndirectDrawMetadata.cpp162 void IndirectDrawMetadata::AddIndexedIndirectDraw(wgpu::IndexFormat indexFormat, in AddIndexedIndirectDraw() argument
168 switch (indexFormat) { in AddIndexedIndirectDraw()
H A DIndirectDrawMetadata.h110 void AddIndexedIndirectDraw(wgpu::IndexFormat indexFormat,
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPURenderBundleEncoder.cpp102 interop::GPUIndexFormat indexFormat, in setIndexBuffer()
112 !conv(f, indexFormat) || // in setIndexBuffer()
100 setIndexBuffer(Napi::Env env, interop::Interface<interop::GPUBuffer> buffer, interop::GPUIndexFormat indexFormat, interop::GPUSize64 offset, std::optional<interop::GPUSize64> size) setIndexBuffer() argument
H A DGPURenderPassEncoder.cpp175 interop::GPUIndexFormat indexFormat, in setIndexBuffer()
184 !conv(f, indexFormat) || // in setIndexBuffer()
173 setIndexBuffer(Napi::Env env, interop::Interface<interop::GPUBuffer> buffer, interop::GPUIndexFormat indexFormat, interop::GPUSize64 offset, std::optional<interop::GPUSize64> size) setIndexBuffer() argument
H A DGPURenderBundleEncoder.h52 interop::GPUIndexFormat indexFormat,
H A DGPURenderPassEncoder.h81 interop::GPUIndexFormat indexFormat,
/third_party/mesa3d/src/gallium/drivers/svga/
H A 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/
H A DSkOTTable_EBLC.h92 SK_OT_USHORT indexFormat; //format of this indexSubTable member
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DRenderPipelineD3D12.cpp301 wgpu::IndexFormat indexFormat) { in ComputeIndexBufferStripCutValue()
307 switch (indexFormat) { in ComputeIndexBufferStripCutValue()
299 ComputeIndexBufferStripCutValue( wgpu::PrimitiveTopology primitiveTopology, wgpu::IndexFormat indexFormat) ComputeIndexBufferStripCutValue() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DStateManager11.h291 void setIndexBuffer(ID3D11Buffer *buffer, DXGI_FORMAT indexFormat, unsigned int offset);
419 bool syncIndexBuffer(ID3D11Buffer *buffer, DXGI_FORMAT indexFormat, unsigned int offset);
H A DStateManager11.cpp3247 DXGI_FORMAT indexFormat,
3250 if (syncIndexBuffer(buffer, indexFormat, offset))
3257 DXGI_FORMAT indexFormat,
3260 if (buffer != mAppliedIB || indexFormat != mAppliedIBFormat || offset != mAppliedIBOffset)
3262 mRenderer->getDeviceContext()->IASetIndexBuffer(buffer, indexFormat, offset);
3265 mAppliedIBFormat = indexFormat;
H A 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/
H A Dengine_dawn.cc56 descriptor->indexFormat = ::dawn::IndexFormat::Uint32; in ComboVertexInputDescriptor()
91 ::dawn::IndexFormat indexFormat; member
1022 GetDawnIndexFormat(*amber_index_format, &vertexInputDescriptor.indexFormat); in CreateRenderPipelineDescriptor()
/third_party/mesa3d/src/mesa/main/
H A 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()

Completed in 42 milliseconds