67f2d3c514
Reason for revert: adding -Dskia_mesa=1 broke production; don't yet know why and don't want to leave things in a broken state. Original issue's description: > add ganesh checkbox to skfiddle interface > > BUG=skia: > R=mtklein@google.com, tfarina@chromium.org > > Committed: https://skia.googlesource.com/skia/+/ccb54895c614632fd01d22b64ab614921f980eb1 TBR=tfarina@chromium.org,jcgregorio@google.com,mtklein@google.com NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/655633003
25 lines
825 B
HTML
25 lines
825 B
HTML
<section id="sidebar">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">
|
|
Options
|
|
</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<form class="form-horizontal" role="form">
|
|
<div class="form-group">
|
|
<label for="image-width" class="col-sm-4 control-label">Width</label>
|
|
<div class="col-sm-8">
|
|
<input type="number" class="form-control" id="image-width" value="{{.Width}}">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="image-height" class="col-sm-4 control-label">Height</label>
|
|
<div class="col-sm-8">
|
|
<input type="number" class="form-control" id="image-height" value="{{.Height}}">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</section> |