Fixed comment
authorIlji Seo <ijclaire.seo@samsung.com>
Tue, 8 Oct 2013 01:20:19 +0000 (10:20 +0900)
committerIlji Seo <ijclaire.seo@samsung.com>
Tue, 8 Oct 2013 01:20:19 +0000 (10:20 +0900)
Change-Id: Iaa7e4673660bf1c12b797a4a2db20e7609bf9a4e
Signed-off-by: Ilji Seo <ijclaire.seo@samsung.com>
project/src/GlesCanvasTexture.cpp

index e6c2961..ca9ff77 100644 (file)
@@ -227,7 +227,7 @@ GlesCanvasTexture::OnAppInitializing(AppRegistry& appRegistry)
 
        TryCatch(InitGL(), , "InitGL() failed.");
 
-       TryCatch(InitCanvasTexture(), , "InitVideoTexture() failed.");
+       TryCatch(InitCanvasTexture(), , "InitCanvasTexture() failed.");
 
        __pTimer = new (std::nothrow) Timer;
        TryCatch(__pTimer != null, , "Failed to allocate memory.");
@@ -495,7 +495,7 @@ GlesCanvasTexture::InitCanvasTexture(void)
        glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
 
        __pCanvasTexture = new (std::nothrow) CanvasTexture;
-       TryCatch(__pCanvasTexture != null,  , "Allocation of VideoTexture failed.");
+       TryCatch(__pCanvasTexture != null,  , "Allocation of CanvasTexture failed.");
 
        r = __pCanvasTexture->Construct(__textureId, rect.width, rect.height);
        TryCatch(!IsFailed(r),  , "__pCanvasTexture->Construct() failed.");