mirror of
https://github.com/opus-tango/IntroductionToVulkan.git
synced 2026-03-20 12:05:20 +00:00
Adjusted size of a quad in Tutorial07.
This commit is contained in:
@@ -948,16 +948,16 @@ namespace ApiWithoutSecrets {
|
||||
|
||||
const std::vector<float>& Tutorial07::GetVertexData() const {
|
||||
static const std::vector<float> vertex_data = {
|
||||
-200.0f, -200.0f, 0.0f, 1.0f,
|
||||
-170.0f, -170.0f, 0.0f, 1.0f,
|
||||
-0.1f, -0.1f,
|
||||
//
|
||||
-200.0f, 200.0f, 0.0f, 1.0f,
|
||||
-170.0f, 170.0f, 0.0f, 1.0f,
|
||||
-0.1f, 1.1f,
|
||||
//
|
||||
200.0f, -200.0f, 0.0f, 1.0f,
|
||||
170.0f, -170.0f, 0.0f, 1.0f,
|
||||
1.1f, -0.1f,
|
||||
//
|
||||
200.0f, 200.0f, 0.0f, 1.0f,
|
||||
170.0f, 170.0f, 0.0f, 1.0f,
|
||||
1.1f, 1.1f,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user