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

Side by Side Diff: src/gpu/gl/GrGLXferProcessor.h

Issue 1246193002: Moved GrGLFragmentProcessor definition to its own file (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « src/gpu/gl/GrGLProgramDesc.cpp ('k') | src/gpu/gl/builders/GrGLShaderBuilder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 GrGLXferProcessor_DEFINED 8 #ifndef GrGLXferProcessor_DEFINED
9 #define GrGLXferProcessor_DEFINED 9 #define GrGLXferProcessor_DEFINED
10 10
11 #include "GrGLProcessor.h" 11 #include "GrGLFragmentProcessor.h"
12 12
13 class GrGLXPBuilder; 13 class GrGLXPBuilder;
14 class GrXferProcessor; 14 class GrXferProcessor;
15 15
16 class GrGLXferProcessor { 16 class GrGLXferProcessor {
17 public: 17 public:
18 GrGLXferProcessor() {} 18 GrGLXferProcessor() {}
19 virtual ~GrGLXferProcessor() {} 19 virtual ~GrGLXferProcessor() {}
20 20
21 typedef GrGLProcessor::TextureSamplerArray TextureSamplerArray; 21 typedef GrGLProcessor::TextureSamplerArray TextureSamplerArray;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 } 79 }
80 80
81 virtual void onSetData(const GrGLProgramDataManager&, const GrXferProcessor& ) = 0; 81 virtual void onSetData(const GrGLProgramDataManager&, const GrXferProcessor& ) = 0;
82 82
83 GrGLProgramDataManager::UniformHandle fDstTopLeftUni; 83 GrGLProgramDataManager::UniformHandle fDstTopLeftUni;
84 GrGLProgramDataManager::UniformHandle fDstScaleUni; 84 GrGLProgramDataManager::UniformHandle fDstScaleUni;
85 85
86 typedef GrGLProcessor INHERITED; 86 typedef GrGLProcessor INHERITED;
87 }; 87 };
88 #endif 88 #endif
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLProgramDesc.cpp ('k') | src/gpu/gl/builders/GrGLShaderBuilder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698