Changeset 246397 in webkit


Ignore:
Timestamp:
Jun 12, 2019 11:28:01 PM (5 years ago)
Author:
graouts@webkit.org
Message:

[WHLSL] Hook up compute
https://bugs.webkit.org/show_bug.cgi?id=198644

Unreviewed build fix. Release iOS build would complain that pipelineState was unused.

  • platform/graphics/gpu/cocoa/GPUComputePassEncoderMetal.mm:

(WebCore::GPUComputePassEncoder::dispatch):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r246396 r246397  
     12019-06-12  Antoine Quint  <graouts@apple.com>
     2
     3        [WHLSL] Hook up compute
     4        https://bugs.webkit.org/show_bug.cgi?id=198644
     5
     6        Unreviewed build fix. Release iOS build would complain that pipelineState was unused.
     7
     8        * platform/graphics/gpu/cocoa/GPUComputePassEncoderMetal.mm:
     9        (WebCore::GPUComputePassEncoder::dispatch):
     10
    1112019-06-12  Myles C. Maxfield  <mmaxfield@apple.com>
    212
  • trunk/Source/WebCore/platform/graphics/gpu/cocoa/GPUComputePassEncoderMetal.mm

    r246396 r246397  
    9393    }
    9494
    95     auto pipelineState = m_pipeline->platformComputePipeline();
    96     ASSERT(pipelineState);
     95    ASSERT(m_pipeline->platformComputePipeline());
    9796
    9897    BEGIN_BLOCK_OBJC_EXCEPTIONS;
Note: See TracChangeset for help on using the changeset viewer.