dec pixel size
This commit is contained in:
parent
df123c0257
commit
f7f1844adb
@ -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()
|
||||||
{
|
{
|
||||||
|
@ -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();
|
||||||
|
@ -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(())
|
||||||
|
Reference in New Issue
Block a user