-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditgpu.html
More file actions
56 lines (48 loc) · 3.1 KB
/
editgpu.html
File metadata and controls
56 lines (48 loc) · 3.1 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<meta charset="utf-8"/>
<title>Enter GPU Information</title>
<head>
<body>
Enter the information below<br/>
<form method="post" action="/editgpu">
Name:<input type="text" name="gpu_name" value="{{ mygpuname.name }}" readonly/><br/>
Manufacturer:<input type="text" name="manufacturer_name" value="{{ mygpuname.manufacturer }}" /><br/>
Date:<input type="date" name="gpu_date" value="{{ mygpuname.date }}" required/><br/>
{% if mygpuname.geometryShader %}
<input type="checkbox" name="gpu_geometryShader" value="{{ mygpuname.geometryShader }}" checked="f" />Geometry Shader<br/>
{% else %}
<input type="checkbox" name="gpu_geometryShader" value="{{ mygpuname.geometryShader }}" />Geometry Shader<br/>
{% endif %}
{% if mygpuname.tesselationShader %}
<input type="checkbox" name="gpu_tesselationShader" value="{{ mygpuname.tesselationShader }}" checked="{{ mygpuname.tesselationShader }}"/>Tesselation Shader<br/>
{% else %}
<input type="checkbox" name="gpu_tesselationShader" value="{{ mygpuname.tesselationShader }}" "/>Tesselation Shader<br/>
{% endif %}
{% if mygpuname.shaderInt16 %}
<input type="checkbox" name="gpu_shaderInt16" value="{{ mygpuname.shaderInt16 }}" checked="{{ mygpuname.shaderInt16 }}" />Shader Int16<br/>
{% else %}
<input type="checkbox" name="gpu_shaderInt16" value="{{ mygpuname.shaderInt16 }}" />Shader Int16<br/>
{% endif %}
{% if mygpuname.sparseBinding %}
<input type="checkbox" name="gpu_sparseBinding" value="{{ mygpuname.sparseBinding }}" checked="{{ mygpuname.sparseBinding }}" />Sparse Binding<br/>
{% else %}
<input type="checkbox" name="gpu_sparseBinding" value="{{ mygpuname.sparseBinding }}" />Sparse Binding<br/>
{% endif %}
{% if mygpuname.textureCompressionETC2 %}
<input type="checkbox" name="gpu_textureCompressionETC2" value="{{ mygpuname.textureCompressionETC2 }}" checked="{{ mygpuname.textureCompressionETC2 }}" />Texture CompressionETC2<br/>
{% else %}
<input type="checkbox" name="gpu_textureCompressionETC2" value="{{ mygpuname.textureCompressionETC2 }}" />Texture CompressionETC2<br/>
{% endif %}
{% if mygpuname.vertexPipelineStoresAndAtomics %}
<input type="checkbox" name="gpu_vertexPipelineStoresAndAtomics" value="{{ mygpuname.vertexPipelineStoresAndAtomics }}" checked="True"/>Vertex pipeline stores and Atomics<br/>
{% else %}
<input type="checkbox" name="gpu_vertexPipelineStoresAndAtomics" value="{{ mygpuname.vertexPipelineStoresAndAtomics }}" />Vertex pipeline stores and Atomics<br/>
{% endif %}
<input type="submit" name="button" value="Update"/>
</form>
<form method="post" action="/editgpu">
<input type="submit" name="button" value="Cancel"/>
</form>
</body>
</html>