| OLD | NEW | 
|   1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |   1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 
|   2 // Use of this source code is governed by a BSD-style license that can be |   2 // Use of this source code is governed by a BSD-style license that can be | 
|   3 // found in the LICENSE file. |   3 // found in the LICENSE file. | 
|   4  |   4  | 
 |   5 #include <stdio.h> | 
 |   6  | 
|   5 #include "teartest.h" |   7 #include "teartest.h" | 
|   6  |   8  | 
|   7 void InitNative(Pixmap pixmap) { } |  | 
|   8  |   9  | 
|   9 bool UpdateBindTexImage(TestState state, int arg) { |  10 class PixmapToTextureTestEGL : public Test { | 
|  10   printf("# UpdateBindTexImage is not supported on EGL.\n"); |  11  public: | 
|  11   return false; |  12   PixmapToTextureTestEGL() {} | 
 |  13   virtual bool Start() { | 
 |  14     printf("# PixmapToTextureTestEGL not implemented.\n"); | 
 |  15     return false; | 
 |  16   } | 
 |  17   virtual bool Loop(int shift) { return false; } | 
 |  18   virtual void Stop() {} | 
 |  19 }; | 
 |  20  | 
 |  21 Test* GetPixmapToTextureTestEGL() { | 
 |  22   return new PixmapToTextureTestEGL(); | 
|  12 } |  23 } | 
| OLD | NEW |