Compare commits

...

2 commits

Author SHA1 Message Date
IXtreme ad21547040 desktopfile 2024-12-26 02:14:28 -05:00
IXtreme f62e5ac975 Removed dep on assets 2024-12-26 01:56:48 -05:00
4 changed files with 20 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 344 B

10
mpris-miniplayer.desktop Normal file
View file

@ -0,0 +1,10 @@
[Desktop Entry]
Type=Application
Version=1.0
Name=mpris-miniplayer
GenericName=Miniplayer
Comment=Miniplayer to display album art for MPRIS media.
Exec=mpris-miniplayer
Terminal=true
Categories=System;Audio;Music
Keywords=music,audio,album

View file

@ -241,7 +241,7 @@ float ScaleToFit(Vector2 src, Vector2 dst) {
int main(int argc, char *argv[]) {
// Initialization
//--------------------------------------------------------------------------------------
int screenWidth = 1280;
int screenWidth = 800;
int screenHeight = 800;
// SetConfigFlags(FLAG_MSAA_4X_HINT | FLAG_WINDOW_RESIZABLE);

View file

@ -178,10 +178,17 @@ void MprisPlayer::UpdateTexture() {
}
RayTexture::RayTexture() {
tex = LoadTexture(ASSET_DIR "/null.png" );
auto rtex = LoadRenderTexture(300,300);
BeginTextureMode(rtex);
DrawRectangle(0,0,300,300,BLACK);
EndTextureMode();
auto img = LoadImageFromTexture(rtex.texture);
tex = LoadTextureFromImage(img);
UnloadImage(img);
UnloadRenderTexture(rtex);
GenTextureMipmaps(&tex);
SetTextureFilter(tex, TEXTURE_FILTER_BILINEAR);
path = ASSET_DIR "/null.png";
path = "null";
}
RayTexture::RayTexture(Image img) {