We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff1cfc commit 2986fb7Copy full SHA for 2986fb7
2 files changed
lib/PDL/Graphics/TriD/GL.pm
@@ -768,10 +768,6 @@ use OpenGL::Modern qw/
768
GL_COLOR_BUFFER_BIT GL_DEPTH_BUFFER_BIT
769
/;
770
771
-use base qw/PDL::Graphics::TriD::Object/;
772
-use fields qw/Ev Width Height Interactive
773
- _ViewPorts _CurrentViewPort /;
774
-
775
my @GL_VERSION_NEEDED = (3, 3, 1);
776
sub gdriver {
777
my($this, $options) = @_;
lib/PDL/Graphics/TriD/Window.pm
@@ -6,7 +6,8 @@ package PDL::Graphics::TriD::Window;
6
use strict;
7
use warnings;
8
use PDL::Graphics::TriD::ViewPort;
9
-use Data::Dumper;
+use base qw(PDL::Graphics::TriD::Object);
10
+use fields qw(Width Height Interactive _ViewPorts _CurrentViewPort);
11
12
$PDL::Graphics::TriD::verbose //= 0;
13
our ($DEFAULT_WIDTH, $DEFAULT_HEIGHT) = (600, 600);
0 commit comments