-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgpu_darwin.go
49 lines (42 loc) · 2.05 KB
/
gpu_darwin.go
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
// Copyright (c) 2022, Cogent Core. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build darwin
package vgpu
import (
"unsafe"
vk "github.com/goki/vulkan"
)
func PlatformDefaults(gp *GPU) {
gp.DeviceExts = append(gp.DeviceExts, []string{"VK_KHR_portability_subset"}...)
gp.DeviceExts = append(gp.DeviceExts)
gp.InstanceExts = append(gp.InstanceExts, vk.KhrGetPhysicalDeviceProperties2ExtensionName)
gp.InstanceExts = append(gp.InstanceExts, vk.KhrPortabilityEnumerationExtensionName)
portFeatures := unsafe.Pointer(&vk.PhysicalDevicePortabilitySubsetFeatures{
SType: vk.StructureTypePhysicalDevicePortabilitySubsetFeatures,
ConstantAlphaColorBlendFactors: vk.True,
Events: vk.True,
ImageViewFormatReinterpretation: vk.True,
ImageViewFormatSwizzle: vk.True,
ImageView2DOn3DImage: vk.False,
MultisampleArrayImage: vk.True,
MutableComparisonSamplers: vk.True,
PointPolygons: vk.False,
SamplerMipLodBias: vk.False,
SeparateStencilMaskRef: vk.True,
ShaderSampleRateInterpolationFunctions: vk.True,
TessellationIsolines: vk.False,
TessellationPointMode: vk.False,
TriangleFans: vk.False,
VertexAttributeAccessBeyondStride: vk.True,
})
gp.DeviceFeaturesNeeded = &vk.PhysicalDeviceVulkan12Features{
SType: vk.StructureTypePhysicalDeviceVulkan12Features,
DescriptorBindingVariableDescriptorCount: vk.True,
DescriptorBindingPartiallyBound: vk.True,
RuntimeDescriptorArray: vk.True,
DescriptorIndexing: vk.True, // might not be needed? not for phong or vdraw
DescriptorBindingSampledImageUpdateAfterBind: vk.True, // might not be needed? not for phong or vdraw
PNext: portFeatures,
}
}