60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
# NO CHECKED-IN PROTOBUF GENCODE
|
|
# source: screens.proto
|
|
|
|
namespace Rv\Data\Screen;
|
|
|
|
use Google\Protobuf\Internal\GPBType;
|
|
use Google\Protobuf\Internal\RepeatedField;
|
|
use Google\Protobuf\Internal\GPBUtil;
|
|
|
|
/**
|
|
* Generated from protobuf message <code>rv.data.Screen.BlendCompensation</code>
|
|
*/
|
|
class BlendCompensation extends \Google\Protobuf\Internal\Message
|
|
{
|
|
/**
|
|
* Generated from protobuf field <code>double black_level = 1;</code>
|
|
*/
|
|
protected $black_level = 0.0;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param array $data {
|
|
* Optional. Data for populating the Message object.
|
|
*
|
|
* @type float $black_level
|
|
* }
|
|
*/
|
|
public function __construct($data = NULL) {
|
|
\GPBMetadata\Screens::initOnce();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>double black_level = 1;</code>
|
|
* @return float
|
|
*/
|
|
public function getBlackLevel()
|
|
{
|
|
return $this->black_level;
|
|
}
|
|
|
|
/**
|
|
* Generated from protobuf field <code>double black_level = 1;</code>
|
|
* @param float $var
|
|
* @return $this
|
|
*/
|
|
public function setBlackLevel($var)
|
|
{
|
|
GPBUtil::checkDouble($var);
|
|
$this->black_level = $var;
|
|
|
|
return $this;
|
|
}
|
|
|
|
}
|
|
|