-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Vasilis Vryniotis <datumbox@users.noreply.github.com>
- Loading branch information
1 parent
5b663c8
commit d8eb22d
Showing
13 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
...sion/csrc/io/image/cpu/read_image_cpu.cpp → ...ion/csrc/io/image/cpu/read_image_impl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...csrc/io/image/cpu/read_write_file_cpu.cpp → ...src/io/image/cpu/read_write_file_impl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "read_write_file_cpu.h" | ||
#include "read_write_file_impl.h" | ||
|
||
#ifdef _WIN32 | ||
#define WIN32_LEAN_AND_MEAN | ||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...vision/csrc/io/image/cpu/readjpeg_cpu.cpp → ...ision/csrc/io/image/cpu/readjpeg_impl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...hvision/csrc/io/image/cpu/readpng_cpu.cpp → ...vision/csrc/io/image/cpu/readpng_impl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ision/csrc/io/image/cpu/writejpeg_cpu.cpp → ...sion/csrc/io/image/cpu/writejpeg_impl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "writejpeg_cpu.h" | ||
#include "writejpeg_impl.h" | ||
|
||
#if !JPEG_FOUND | ||
|
||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...vision/csrc/io/image/cpu/writepng_cpu.cpp → ...ision/csrc/io/image/cpu/writepng_impl.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "writejpeg_cpu.h" | ||
#include "writejpeg_impl.h" | ||
|
||
#if !PNG_FOUND | ||
|
||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#pragma once | ||
|
||
#include "cpu/read_image_cpu.h" | ||
#include "cpu/read_write_file_cpu.h" | ||
#include "cpu/readjpeg_cpu.h" | ||
#include "cpu/readpng_cpu.h" | ||
#include "cpu/writejpeg_cpu.h" | ||
#include "cpu/writepng_cpu.h" | ||
#include "cpu/read_image_impl.h" | ||
#include "cpu/read_write_file_impl.h" | ||
#include "cpu/readjpeg_impl.h" | ||
#include "cpu/readpng_impl.h" | ||
#include "cpu/writejpeg_impl.h" | ||
#include "cpu/writepng_impl.h" |