summaryrefslogtreecommitdiff
path: root/pipeline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pipeline.cpp')
-rw-r--r--pipeline.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/pipeline.cpp b/pipeline.cpp
index 2dc8ce9..79bfc1d 100644
--- a/pipeline.cpp
+++ b/pipeline.cpp
@@ -136,10 +136,10 @@ void Pipeline_Builder::begin() {
}
void Pipeline_Builder::viewport(
- float x,
- float y,
- float w,
- float h
+ int x,
+ int y,
+ int w,
+ int h
) {
pip->viewport[0] = x;
pip->viewport[1] = y;
@@ -148,10 +148,10 @@ void Pipeline_Builder::viewport(
}
void Pipeline_Builder::scissor(
- float x,
- float y,
- float w,
- float h
+ int x,
+ int y,
+ int w,
+ int h
) {
pip->scissor[0] = x;
pip->scissor[1] = y;