This file contains hidden or 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
| #version 450 core | |
| layout (local_size_x = 1, local_size_y = 1, local_size_z = 1) in; | |
| layout (set = 0, binding = 5, std430) buffer MyBuffer | |
| { | |
| uint array[]; | |
| } myBuffer; | |
| layout (push_constant) uniform Scalar |
This file contains hidden or 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
| import 'package:flutter/material.dart'; | |
| import 'package:english_words/english_words.dart'; | |
| void main() => runApp(MyApp()); | |
| class RandomWords extends StatefulWidget { | |
| @override | |
| RandomWordsState createState() => RandomWordsState(); | |
| } |
This file contains hidden or 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
| use std::ops::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Sub, SubAssign}; | |
| use num_traits::{Float, Num, NumAssignOps}; | |
| #[derive(Debug, Copy, Clone, PartialEq, PartialOrd)] | |
| pub struct Vector3<T: Num + Copy> { | |
| pub x: T, | |
| pub y: T, | |
| pub z: T, | |
| } |
This file contains hidden or 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
| [package] | |
| name = "test_spotify" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| tokio = { version = "1.40.0", features = ["full"] } | |
| tokio-util = { version = "0.7.12" , features = ["full"] } | |
| tokio-cron-scheduler = { version = "0.13.0", features = ["signal"] } | |
| spotify-rs = "0.3.14" |
OlderNewer