Add 'windows' suffix to windows specific files

Related-To: NEO-3599
Change-Id: I42535735142a240844c87a7b8170328a32f359b5
Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
This commit is contained in:
Maciej Dziuban
2020-01-21 11:07:55 +01:00
committed by sys_ocldev
parent ac4041d906
commit c50d8e3eb9
16 changed files with 25 additions and 30 deletions

View File

@ -15,7 +15,7 @@
#include "runtime/os_interface/windows/os_interface.h"
#include "runtime/os_interface/windows/wddm/wddm.h"
#include "runtime/sharings/gl/gl_arb_sync_event.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include <GL/gl.h>

View File

@ -9,7 +9,7 @@
#include "runtime/helpers/timestamp_packet.h"
#include "runtime/helpers/windows/gl_helper.h"
#include "runtime/sharings/gl/gl_arb_sync_event.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include <algorithm>
#include <cstdint>

View File

@ -8,13 +8,13 @@ if(WIN32)
set(RUNTIME_SRCS_SHARINGS_GL_WINDOWS
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
${CMAKE_CURRENT_SOURCE_DIR}/cl_gl_api.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_arb_sync_event.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_buffer.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_context_guard.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_sharing.h
${CMAKE_CURRENT_SOURCE_DIR}/gl_sharing.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_sync_event.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_texture.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_arb_sync_event_windows.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_buffer_windows.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_context_guard_windows.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_sharing_windows.h
${CMAKE_CURRENT_SOURCE_DIR}/gl_sharing_windows.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_sync_event_windows.cpp
${CMAKE_CURRENT_SOURCE_DIR}/gl_texture_windows.cpp
${CMAKE_CURRENT_SOURCE_DIR}/win_enable_gl.h
)
target_sources(${NEO_STATIC_LIB_NAME} PRIVATE ${RUNTIME_SRCS_SHARINGS_GL_WINDOWS})

View File

@ -21,7 +21,7 @@
#include "runtime/sharings/gl/gl_buffer.h"
#include "runtime/sharings/gl/gl_sync_event.h"
#include "runtime/sharings/gl/gl_texture.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "runtime/tracing/tracing_notify.h"
#include "CL/cl.h"

View File

@ -5,15 +5,14 @@
*
*/
#include "runtime/sharings/gl/gl_arb_sync_event.h"
#include "public/cl_gl_private_intel.h"
#include "runtime/command_queue/command_queue.h"
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/context/context.h"
#include "runtime/device/device.h"
#include "runtime/helpers/base_object.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/gl_arb_sync_event.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include <GL/gl.h>

View File

@ -5,18 +5,17 @@
*
*/
#include "runtime/sharings/gl/gl_buffer.h"
// clang-format off
#include "public/cl_gl_private_intel.h"
// clang-format on
#include "core/gmm_helper/gmm.h"
#include "runtime/sharings/gl/gl_buffer.h"
#include "runtime/context/context.h"
#include "runtime/device/device.h"
#include "runtime/helpers/get_info.h"
#include "runtime/mem_obj/buffer.h"
#include "runtime/memory_manager/memory_manager.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "config.h"

View File

@ -6,8 +6,7 @@
*/
#include "runtime/sharings/gl/gl_context_guard.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
namespace NEO {
GLContextGuard::GLContextGuard(GLSharingFunctions &sharingFcns) : sharingFunctions(&sharingFcns) {

View File

@ -5,7 +5,7 @@
*
*/
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "runtime/context/context.inl"
#include "runtime/helpers/windows/gl_helper.h"

View File

@ -5,8 +5,6 @@
*
*/
#include "runtime/sharings/gl/gl_sync_event.h"
#include "public/cl_gl_private_intel.h"
#include "runtime/command_stream/command_stream_receiver.h"
#include "runtime/context/context.h"
@ -17,7 +15,8 @@
#include "runtime/helpers/timestamp_packet.h"
#include "runtime/platform/platform.h"
#include "runtime/sharings/gl/gl_context_guard.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/gl_sync_event.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
namespace NEO {
GlSyncEvent::GlSyncEvent(Context &context, const GL_CL_SYNC_INFO &sync)

View File

@ -5,8 +5,6 @@
*
*/
#include "runtime/sharings/gl/gl_texture.h"
#include "core/gmm_helper/gmm.h"
#include "core/gmm_helper/gmm_helper.h"
#include "core/gmm_helper/resource_info.h"
@ -19,7 +17,8 @@
#include "runtime/helpers/get_info.h"
#include "runtime/mem_obj/image.h"
#include "runtime/memory_manager/memory_manager.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/gl_texture.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "CL/cl_gl.h"
#include "config.h"

View File

@ -11,7 +11,7 @@
#include "runtime/context/context.h"
#include "runtime/context/context.inl"
#include "runtime/sharings/gl/cl_gl_api_intel.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "runtime/sharings/sharing_factory.h"
#include "runtime/sharings/sharing_factory.inl"

View File

@ -6,7 +6,7 @@
*/
#pragma once
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "runtime/sharings/sharing_factory.h"
#include <memory>

View File

@ -7,7 +7,7 @@
#pragma once
#include "public/cl_gl_private_intel.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "unit_tests/os_interface/windows/gl/gl_dll_helper.h"
#include "config.h"

View File

@ -14,7 +14,7 @@
#include "runtime/os_interface/windows/wddm/wddm.h"
#include "runtime/os_interface/windows/wddm_memory_operations_handler.h"
#include "runtime/sharings/gl/gl_arb_sync_event.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "unit_tests/mocks/gl/windows/mock_gl_sharing_windows.h"
#include "unit_tests/mocks/mock_execution_environment.h"
#include "unit_tests/os_interface/windows/wddm_fixture.h"

View File

@ -21,7 +21,7 @@
#include "runtime/sharings/gl/gl_context_guard.h"
#include "runtime/sharings/gl/gl_sync_event.h"
#include "runtime/sharings/gl/gl_texture.h"
#include "runtime/sharings/gl/windows/gl_sharing.h"
#include "runtime/sharings/gl/windows/gl_sharing_windows.h"
#include "runtime/sharings/sharing.h"
#include "test.h"
#include "unit_tests/libult/create_command_stream.h"