Skip to content

Commit 57bad0a

Browse files
committedNov 12, 2016
Clean up part 2
Dead code removal Fixed some dependenies
1 parent f7d0b3f commit 57bad0a

12 files changed

+17
-47
lines changed
 

‎comp.spv

-2.44 KB
Binary file not shown.

‎compositor.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ class Compositor
4848
void Loop();
4949
bool Destroy(VkDevice& device);
5050
bool CheckExtensionsSupport(uint32_t extensionCount, VkExtensionProperties* extensions);
51-
VkFormat GetSurfaceFormat() { return surfaceFormat; }
52-
VkPresentModeKHR GetPresentMode() { return presentMode; }
51+
VkFormat GetSurfaceFormat() const { return surfaceFormat; }
52+
VkPresentModeKHR GetPresentMode() const { return presentMode; }
5353

5454
bool Draw(VkDevice& device);
5555

‎controller.h

+4-5
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,11 @@ class Controller
5050
VkPhysicalDeviceMemoryProperties& GetMemoryProperties() { return memProperties; }
5151

5252
//VkSurfaceCapabilitiesKHR* GetCapabilities() { return &capabilities; }
53-
//uint32_t GetQueueFamilyId() { return queueFamilyId; }
5453

55-
uint32_t GetQueueFamilyId() { return queueFamilyId; }
56-
uint32_t GetGraphicsQueueIndex() { return graphicsQueueIndex; }
57-
uint32_t GetPresentQueueIndex(){ return presentQueueIndex; }
58-
uint32_t GetComputeQueueIndex(){ return computeQueueIndex; }
54+
uint32_t GetQueueFamilyId() const { return queueFamilyId; }
55+
uint32_t GetGraphicsQueueIndex() const { return graphicsQueueIndex; }
56+
uint32_t GetPresentQueueIndex() const { return presentQueueIndex; }
57+
uint32_t GetComputeQueueIndex() const { return computeQueueIndex; }
5958

6059
bool CheckFormatPropertyType(VkFormat format, VkFormatFeatureFlagBits flags);
6160

‎frag.spv

-1.74 KB
Binary file not shown.

‎main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232

3333
int main()
3434
{
35+
///@note Static window size for now
36+
/// If dynamic window resizing is added, then swap chain reconstruction is necessary
3537
const uint32_t width = 1920;
3638
const uint32_t height = 1080;
3739

@@ -44,15 +46,13 @@ int main()
4446
vfsme::Controller devCtrl;
4547

4648
devCtrl.Init();
47-
4849
devCtrl.SetupQueue();
4950

5051
VkSurfaceKHR surface;
5152

5253
window.CreateSurface(devCtrl.GetInstance(), &surface);
5354

5455
devCtrl.SetupDevice(surface);
55-
5656
devCtrl.Configure(surface);
5757

5858
vfsme::Compositor composer(devCtrl.GetMemoryProperties());

‎makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ OBJS = commands.o renderer.o system.o controller.o compositor.o compute.o
2626

2727
.PHONY: clean test shaders
2828

29-
vulkan: main.cpp $(OBJS)
29+
vulkan: main.cpp $(OBJS) shaders
3030
g++ $(CFLAGS) $(DEFINES) $(INCLUDE) $(LDFLAGS) -o vulkan main.cpp $(OBJS) $(LDLIBS)
3131

3232
system.o: system.h system.cpp
3333
g++ $(CFLAGS) $(DEFINES) $(INCLUDE) -c system.cpp -o $@
3434

35-
commands.o: commands.h commands.cpp
35+
commands.o: commands.h commands.cpp shared.h
3636
g++ $(CFLAGS) $(DEFINES) $(INCLUDE) -c commands.cpp -o $@
3737

3838
renderer.o: renderer.h renderer.cpp commands.h
@@ -41,7 +41,7 @@ renderer.o: renderer.h renderer.cpp commands.h
4141
compute.o: compute.h compute.cpp commands.h
4242
g++ $(CFLAGS) $(DEFINES) $(INCLUDE) -c compute.cpp -o $@
4343

44-
controller.o: controller.h controller.cpp
44+
controller.o: controller.h controller.cpp shared.h
4545
g++ $(CFLAGS) $(DEFINES) $(INCLUDE) -c controller.cpp -o $@
4646

4747
compositor.o: compositor.h compositor.cpp renderer.h compute.h
@@ -56,4 +56,4 @@ shaders:
5656
$(VULKAN_PATH)/Bin32/glslangValidator.exe -V shader.comp
5757

5858
clean:
59-
rm *.exe *.o
59+
rm *.exe *.o *.spv

‎renderer.cpp

+3-15
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ Renderer::Renderer(VkExtent2D& extent, const VkExtent3D& gridDim, VkPhysicalDevi
4343
imageExtent(extent),
4444
grid(gridDim)
4545
{
46-
//GetMemoryTypeIndexCallback = memTypeIndexCallback;
47-
4846
numVerts = grid.width * grid.height;
4947
numPrims = (grid.width - 1) * (grid.height - 1) * 2;
5048
vertexInfoSize = sizeof(float) * numComponents * numVerts * numVertexElements;
@@ -59,12 +57,6 @@ Renderer::Renderer(VkExtent2D& extent, const VkExtent3D& gridDim, VkPhysicalDevi
5957
drawCommandBuffers = new VkCommandBuffer[numDrawCmdBuffers];
6058
attributeDescriptions = new VkVertexInputAttributeDescription[numAttrDesc];
6159
bindingDescriptions = new VkVertexInputBindingDescription[numBindDesc];
62-
//vertexInfo = static_cast<float*>(malloc(vertexInfoSize));
63-
//indices = static_cast<uint16_t*>(malloc(indicesBufferSize));
64-
//framebuffers = static_cast<VkFramebuffer*>(malloc(sizeof(VkFramebuffer)*numFBOs));
65-
//drawCommandBuffers = static_cast<VkCommandBuffer*>(malloc(sizeof(VkCommandBuffer)*numDrawCmdBuffers));
66-
//attributeDescriptions = static_cast<VkVertexInputAttributeDescription*>(malloc(sizeof(VkVertexInputAttributeDescription)*numAttrDesc));
67-
//bindingDescriptions = static_cast<VkVertexInputBindingDescription*>(malloc(sizeof(VkVertexInputBindingDescription)*numBindDesc));
6860
}
6961

7062
Renderer::~Renderer()
@@ -696,10 +688,10 @@ VkCommandBuffer& Renderer::TransferStaticBuffers(VkDevice& device)
696688

697689
VkCommandBuffer& Renderer::TransferDynamicBuffers(VkDevice& device)
698690
{
699-
static auto startTime = std::chrono::high_resolution_clock::now();
691+
//static auto startTime = std::chrono::high_resolution_clock::now();
700692

701-
auto currentTime = std::chrono::high_resolution_clock::now();
702-
float time = std::chrono::duration_cast<std::chrono::milliseconds>(currentTime - startTime).count() / 1000.0f;
693+
//auto currentTime = std::chrono::high_resolution_clock::now();
694+
//float time = std::chrono::duration_cast<std::chrono::milliseconds>(currentTime - startTime).count() / 1000.0f;
703695

704696
glm::mat4 model; //= glm::rotate(glm::mat4(), time * glm::radians(90.0f), glm::vec3(0.0f, 0.0f, 1.0f));
705697
glm::mat4 view = glm::lookAt(glm::vec3(0.0f, 6.0f, 10.0f), glm::vec3(0.0f, 0.0f, 0.0f), glm::vec3(0.0f, 1.0f, 0.0f));
@@ -708,15 +700,11 @@ VkCommandBuffer& Renderer::TransferDynamicBuffers(VkDevice& device)
708700

709701
float lightPos[] = { 10.0, 10.0, 0.0 };
710702

711-
//mvp = proj * view * model;
712-
713703
VkDeviceSize size = uboSize;
714704

715705
void* data;
716706
vkMapMemory(device, uniformTransferBufferMemory, 0, size, 0, &data);
717707

718-
//memcpy(data, glm::value_ptr(mvp), (size_t) size);
719-
720708
char* bytes = static_cast<char*>(data);
721709

722710
memcpy(bytes, glm::value_ptr(model), (size_t) mat4Size);

‎renderer.h

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ namespace vfsme
3030
class Renderer : Commands
3131
{
3232
public:
33-
//Renderer(VkExtent2D& screenExtent, const VkExtent3D& gridDim, VkPhysicalDeviceMemoryProperties& memProperties, std::function<uint32_t(VkDevice& device, VkBuffer& buffer, VkPhysicalDeviceMemoryProperties& props, VkMemoryPropertyFlags properties, uint32_t& allocSize)> memTypeIndexCallback);
3433
Renderer(VkExtent2D& screenExtent, const VkExtent3D& gridDim, VkPhysicalDeviceMemoryProperties& memProps);
3534
~Renderer();
3635

‎shader.comp

+1-11
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,9 @@ void main()
4545
{
4646
// Current SSBO index
4747
//uint index = gl_LocalInvocationID.x;
48-
uint index = gl_LocalInvocationIndex;
49-
48+
uint index = gl_LocalInvocationIndex;
5049
//uint index = gl_GlobalInvocationID.x + gl_GlobalInvocationID.y * gl_NumWorkGroups.x * gl_WorkGroupSize.x;
51-
52-
//uint index = 0;
53-
54-
float value = 1.0;
5550

56-
//for(int i = 0; i < height.length(); ++i)
57-
//{
58-
// height[i] = 1.0;
59-
//}
60-
6151
float kx = ubo.k * gl_LocalInvocationID.x * ubo.dx;
6252

6353
height[index] = ubo.amplitude*sin(kx - ubo.omega*ubo.time);

‎shader.frag

+1-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@ layout(location = 7) in float inSpecularConst;
3030
layout(location = 0) out vec4 outColor;
3131

3232
void main() {
33-
//outColor = vec4(inColor, 1.0);
34-
35-
vec3 eyeVec = normalize(-inEyePos);
33+
vec3 eyeVec = normalize(-inEyePos);
3634
vec3 reflected = normalize(reflect(-inLightVec, inNormal));
3735
vec4 diffuse = inDiffuseLight * max(dot(inNormal, inLightVec), 0.0);
3836
vec4 specular = inSpecularLight * pow(max(dot(reflected, eyeVec), 0.0), 0.8) * inSpecularConst;

‎shader.vert

-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ layout(location = 6) out vec4 outSpecularLight;
4040
layout(location = 7) out float outSpecularConst;
4141

4242
void main() {
43-
//gl_Position = vec4(inPosition, 1.0);
44-
//gl_Position = ubo.proj * ubo.view * ubo.model * vec4(inPosition, 1.0);
45-
46-
//gl_Position = ubo.mvp * vec4(inPosition.x, inHeight, inPosition.z, 1.0);
4743
outColor = inColor;
4844
outAmbientLight = vec4(0.3, 0.3, 0.3, 1.0);
4945
outDiffuseLight = vec4(0.7, 0.7, 0.7, 1.0);

‎vert.spv

-3.12 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.