Changeset 247450 in webkit


Ignore:
Timestamp:
Jul 15, 2019 2:40:28 PM (5 years ago)
Author:
Keith Rollin
Message:

Add missing webgpu includes
https://bugs.webkit.org/show_bug.cgi?id=199802
<rdar://problem/53119120>

Reviewed by Myles C. Maxfield.

WHLSLFunctionWriter.cpp fails to compile on tvOS and watchOS due to
missing includes. This file likely compiles on other platforms due to
the Unified Sources facility that clumps several implementation files
together, exposing those implementation files to the others' includes.
It fails on tvOS and watchOS due to the different ways these
implementation files can get clumped together on different platforms.

No new tests as there is no functional change.

  • Modules/webgpu/WHLSL/Metal/WHLSLFunctionWriter.cpp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r247445 r247450  
     12019-07-15  Keith Rollin  <krollin@apple.com>
     2
     3        Add missing webgpu includes
     4        https://bugs.webkit.org/show_bug.cgi?id=199802
     5        <rdar://problem/53119120>
     6
     7        Reviewed by Myles C. Maxfield.
     8
     9        WHLSLFunctionWriter.cpp fails to compile on tvOS and watchOS due to
     10        missing includes. This file likely compiles on other platforms due to
     11        the Unified Sources facility that clumps several implementation files
     12        together, exposing those implementation files to the others' includes.
     13        It fails on tvOS and watchOS due to the different ways these
     14        implementation files can get clumped together on different platforms.
     15
     16        No new tests as there is no functional change.
     17
     18        * Modules/webgpu/WHLSL/Metal/WHLSLFunctionWriter.cpp:
     19
    1202019-07-15  Michael Catanzaro  <mcatanzaro@igalia.com>
    221
  • trunk/Source/WebCore/Modules/webgpu/WHLSL/Metal/WHLSLFunctionWriter.cpp

    r247174 r247450  
    3131#include "NotImplemented.h"
    3232#include "WHLSLAST.h"
     33#include "WHLSLEntryPointScaffolding.h"
     34#include "WHLSLInferTypes.h"
    3335#include "WHLSLNativeFunctionWriter.h"
    3436#include "WHLSLProgram.h"
Note: See TracChangeset for help on using the changeset viewer.