/usr/lib/perl5/Ogre/HardwareBuffer.pm is in libogre-perl 0.50-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | package Ogre::HardwareBuffer;
use strict;
use warnings;
########## GENERATED CONSTANTS BEGIN
require Exporter;
unshift @Ogre::HardwareBuffer::ISA, 'Exporter';
our %EXPORT_TAGS = (
'Usage' => [qw(
HBU_STATIC
HBU_DYNAMIC
HBU_WRITE_ONLY
HBU_DISCARDABLE
HBU_STATIC_WRITE_ONLY
HBU_DYNAMIC_WRITE_ONLY
HBU_DYNAMIC_WRITE_ONLY_DISCARDABLE
)],
'LockOptions' => [qw(
HBL_NORMAL
HBL_DISCARD
HBL_READ_ONLY
HBL_NO_OVERWRITE
)],
);
$EXPORT_TAGS{'all'} = [ map { @{ $EXPORT_TAGS{$_} } } keys %EXPORT_TAGS ];
our @EXPORT_OK = @{ $EXPORT_TAGS{'all'} };
our @EXPORT = ();
########## GENERATED CONSTANTS END
1;
__END__
|