build: add missing includes

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2025-11-13 12:50:53 +00:00
committed by Compute-Runtime-Automation
parent 59993ae7c1
commit 690be2d0cc
4 changed files with 13 additions and 3 deletions

View File

@@ -7,6 +7,9 @@
#pragma once
#include "shared/source/os_interface/windows/windows_wrapper.h"
#include <cstdint>
#include <initguid.h>
namespace L0 {

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2023 Intel Corporation
* Copyright (C) 2020-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -7,6 +7,7 @@
#pragma once
#include <memory>
#include <stdint.h>
namespace L0 {

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2024 Intel Corporation
* Copyright (C) 2024-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -9,6 +9,10 @@
#ifndef OPENCL_SHARED_RESOURCE
#define OPENCL_SHARED_RESOURCE
#include "shared/source/gmm_helper/gmm_lib.h"
#include <GL/gl.h>
#include <GL/glext.h>
// Used for creating CL resources from GL resources
typedef struct _tagCLGLResourceInfo {

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2023 Intel Corporation
* Copyright (C) 2018-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -10,6 +10,8 @@
#include "opencl/source/sharings/d3d/d3d_sharing.h"
#include "neo_igfxfmid.h"
namespace NEO {
template <typename D3D>
class MockD3DSharingFunctions : public D3DSharingFunctions<D3D> {