dec pixel size

This commit is contained in:
Evan Pratten 2021-09-22 18:04:34 -04:00
parent df123c0257
commit f7f1844adb
3 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@ uniform vec2 viewport;
out vec4 finalColor; out vec4 finalColor;
// Pixel scaling // Pixel scaling
const vec2 pixelScale = vec2(2.0, 2.0); const vec2 pixelScale = vec2(1.0, 1.0);
void main() void main()
{ {

View File

@ -62,7 +62,7 @@ pub async fn game_begin() {
let (mut rl, thread) = raylib::init() let (mut rl, thread) = raylib::init()
.size(640, 480) .size(640, 480)
.title(&game_config.name) .title(&game_config.name)
// .vsync() .vsync()
.msaa_4x() .msaa_4x()
.resizable() .resizable()
.build(); .build();

View File

@ -114,6 +114,7 @@ impl ShaderWrapper {
where where
S: ShaderV, S: ShaderV,
{ {
puffin::profile_function!();
if let Some(ptr) = self.variables.get(name) { if let Some(ptr) = self.variables.get(name) {
self.shader.set_shader_value(*ptr, value); self.shader.set_shader_value(*ptr, value);
Ok(()) Ok(())