dec pixel size
This commit is contained in:
parent
df123c0257
commit
f7f1844adb
@ -13,7 +13,7 @@ uniform vec2 viewport;
|
||||
out vec4 finalColor;
|
||||
|
||||
// Pixel scaling
|
||||
const vec2 pixelScale = vec2(2.0, 2.0);
|
||||
const vec2 pixelScale = vec2(1.0, 1.0);
|
||||
|
||||
void main()
|
||||
{
|
||||
|
@ -62,7 +62,7 @@ pub async fn game_begin() {
|
||||
let (mut rl, thread) = raylib::init()
|
||||
.size(640, 480)
|
||||
.title(&game_config.name)
|
||||
// .vsync()
|
||||
.vsync()
|
||||
.msaa_4x()
|
||||
.resizable()
|
||||
.build();
|
||||
|
@ -114,6 +114,7 @@ impl ShaderWrapper {
|
||||
where
|
||||
S: ShaderV,
|
||||
{
|
||||
puffin::profile_function!();
|
||||
if let Some(ptr) = self.variables.get(name) {
|
||||
self.shader.set_shader_value(*ptr, value);
|
||||
Ok(())
|
||||
|
Reference in New Issue
Block a user