Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(358)

Side by Side Diff: src/gpu/gl/builders/GrGLVertexShaderBuilder.h

Issue 854013002: Refactor position computation to enable device space "nudge" (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Update to ToT Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrGLVertexShader_DEFINED 8 #ifndef GrGLVertexShader_DEFINED
9 #define GrGLVertexShader_DEFINED 9 #define GrGLVertexShader_DEFINED
10 10
11 #include "GrGLShaderBuilder.h" 11 #include "GrGLShaderBuilder.h"
12 12
13 class GrGLVarying; 13 class GrGLVarying;
14 14
15 class GrGLVertexBuilder : public GrGLShaderBuilder { 15 class GrGLVertexBuilder : public GrGLShaderBuilder {
16 public: 16 public:
17 GrGLVertexBuilder(GrGLProgramBuilder* program); 17 GrGLVertexBuilder(GrGLProgramBuilder* program);
18 18
19 void transformToNormalizedDeviceSpace(const char* pos3); 19 void transformToNormalizedDeviceSpace(const GrShaderVar& posVar);
20 void emitAttributes(const GrGeometryProcessor& gp); 20 void emitAttributes(const GrGeometryProcessor& gp);
21 21
22 void addAttribute(const GrGeometryProcessor::Attribute* attr) { 22 void addAttribute(const GrGeometryProcessor::Attribute* attr) {
23 this->addAttribute(GrShaderVar(attr->fName, 23 this->addAttribute(GrShaderVar(attr->fName,
24 GrVertexAttribTypeToSLType(attr->fType), 24 GrVertexAttribTypeToSLType(attr->fType),
25 GrShaderVar::kAttribute_TypeModifier)); 25 GrShaderVar::kAttribute_TypeModifier));
26 } 26 }
27 27
28 private: 28 private:
29 /* 29 /*
(...skipping 11 matching lines...) Expand all
41 bool addAttribute(const GrShaderVar& var); 41 bool addAttribute(const GrShaderVar& var);
42 42
43 const char* fRtAdjustName; 43 const char* fRtAdjustName;
44 44
45 friend class GrGLProgramBuilder; 45 friend class GrGLProgramBuilder;
46 46
47 typedef GrGLShaderBuilder INHERITED; 47 typedef GrGLShaderBuilder INHERITED;
48 }; 48 };
49 49
50 #endif 50 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698