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

Unified Diff: src/gpu/gl/GrGLUtil.cpp

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/gl/GrGLPathRendering.cpp ('k') | src/gpu/gl/GrGLVertexArray.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/GrGLUtil.cpp
diff --git a/src/gpu/gl/GrGLUtil.cpp b/src/gpu/gl/GrGLUtil.cpp
index 34276e2c405e43fc296a889d867c069f599dca6e..5579701796a8a00080584b1230a665cd4fa3bd33 100644
--- a/src/gpu/gl/GrGLUtil.cpp
+++ b/src/gpu/gl/GrGLUtil.cpp
@@ -63,8 +63,8 @@ void GrGLCheckErr(const GrGLInterface* gl,
///////////////////////////////////////////////////////////////////////////////
GrGLStandard GrGLGetStandardInUseFromString(const char* versionString) {
- if (NULL == versionString) {
- SkDebugf("NULL GL version string.");
+ if (nullptr == versionString) {
+ SkDebugf("nullptr GL version string.");
return kNone_GrGLStandard;
}
@@ -165,8 +165,8 @@ void GrGLGetDriverInfo(GrGLStandard standard,
}
GrGLVersion GrGLGetVersionFromString(const char* versionString) {
- if (NULL == versionString) {
- SkDebugf("NULL GL version string.");
+ if (nullptr == versionString) {
+ SkDebugf("nullptr GL version string.");
return GR_GL_INVALID_VER;
}
@@ -200,8 +200,8 @@ GrGLVersion GrGLGetVersionFromString(const char* versionString) {
}
GrGLSLVersion GrGLGetGLSLVersionFromString(const char* versionString) {
- if (NULL == versionString) {
- SkDebugf("NULL GLSL version string.");
+ if (nullptr == versionString) {
+ SkDebugf("nullptr GLSL version string.");
return GR_GLSL_INVALID_VER;
}
« no previous file with comments | « src/gpu/gl/GrGLPathRendering.cpp ('k') | src/gpu/gl/GrGLVertexArray.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698