| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 | 8 |
| 9 #include "GrGLSLCaps.h" | 9 #include "GrGLSLCaps.h" |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 r.appendf("Max GS Samplers: %d\n", fMaxGeometrySamplers); | 87 r.appendf("Max GS Samplers: %d\n", fMaxGeometrySamplers); |
| 88 r.appendf("Max FS Samplers: %d\n", fMaxFragmentSamplers); | 88 r.appendf("Max FS Samplers: %d\n", fMaxFragmentSamplers); |
| 89 r.appendf("Max Combined Samplers: %d\n", fMaxFragmentSamplers); | 89 r.appendf("Max Combined Samplers: %d\n", fMaxFragmentSamplers); |
| 90 r.appendf("Advanced blend equation interaction: %s\n", | 90 r.appendf("Advanced blend equation interaction: %s\n", |
| 91 kAdvBlendEqInteractionStr[fAdvBlendEqInteraction]); | 91 kAdvBlendEqInteractionStr[fAdvBlendEqInteraction]); |
| 92 return r; | 92 return r; |
| 93 } | 93 } |
| 94 | 94 |
| 95 void GrGLSLCaps::onApplyOptionsOverrides(const GrContextOptions& options) { | 95 void GrGLSLCaps::onApplyOptionsOverrides(const GrContextOptions& options) { |
| 96 } | 96 } |
| 97 | |
| OLD | NEW |