forked from AugmendTech/CrabGrab
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
liam
committed
Apr 19, 2024
1 parent
4ed0b07
commit 4919884
Showing
21 changed files
with
165 additions
and
64 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[Hunspell] | ||
search_dirs = ["."] | ||
extra_dictionaries = ["crabgrab.dic"] | ||
use_builtin = true |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
41 | ||
chrominance | ||
luminance | ||
rgb | ||
rgba | ||
bgra | ||
Bgra8888 | ||
cbcr | ||
CbCr | ||
y | ||
YCbCr | ||
ycbcr | ||
capturable | ||
Wgpu | ||
IOSurface | ||
IOSurfaces | ||
F420 | ||
V420 | ||
VRAM | ||
luma | ||
chroma | ||
backend | ||
config | ||
configs | ||
u2 | ||
u8 | ||
u10 | ||
f16 | ||
crabgrab | ||
CrabGrab | ||
MacOS | ||
DXGI | ||
DX11 | ||
IOSurfaceRef | ||
RgbaF16x4 | ||
Rgba1010102 | ||
WIP | ||
APIs | ||
🦀 | ||
🖥️ | ||
-> | ||
2D |
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
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
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
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
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
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
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
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,20 +1,34 @@ | ||
#[cfg(feature = "metal")] | ||
#[cfg(target_os="macos")] | ||
/// Frame -> Metal Texture conversion | ||
/// (requires `metal` feature) | ||
pub mod metal; | ||
#[cfg(feature = "dxgi")] | ||
#[cfg(target_os="windows")] | ||
/// Frame -> DXGI Surface conversion | ||
/// (requires `dxgi` feature) | ||
pub mod dxgi; | ||
#[cfg(feature = "dx11")] | ||
#[cfg(target_os="windows")] | ||
/// Frame -> DX11 Surface/Texture conversion | ||
/// (requires `dx11` feature) | ||
pub mod dx11; | ||
#[cfg(feature = "iosurface")] | ||
#[cfg(target_os="macos")] | ||
/// Frame -> IOSurface conversion | ||
/// (requires `iosurface` feature) | ||
pub mod iosurface; | ||
#[cfg(feature = "bitmap")] | ||
/// Frame to Bitmap conversion | ||
/// (requires `bitmap` feature) | ||
pub mod bitmap; | ||
#[cfg(feature = "wgpu")] | ||
/// Frame -> Wgpu Texture conversion | ||
/// (requires `wgpu` feature) | ||
pub mod wgpu; | ||
#[cfg(feature = "screenshot")] | ||
/// Screenshot utility function | ||
/// (requires `screenshot` feature) | ||
pub mod screenshot; | ||
//#[cfg(feature = "content_picker")] | ||
//pub mod content_picker; |
Oops, something went wrong.