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

Unified Diff: ui/surface/accelerated_surface_transformer_win.hlsl

Issue 11464017: Separate image processing logic from presentation logic. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed dependencies of surface_gpu_tests. Created 7 years, 12 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
Index: ui/surface/accelerated_surface_transformer_win.hlsl
diff --git a/ui/surface/accelerated_surface_win.hlsl b/ui/surface/accelerated_surface_transformer_win.hlsl
similarity index 89%
rename from ui/surface/accelerated_surface_win.hlsl
rename to ui/surface/accelerated_surface_transformer_win.hlsl
index bc87dee419a793db07374512cdb8459fb86baa97..0bd6fda78df22ef6e39b0b06c33911606afcd0bf 100644
--- a/ui/surface/accelerated_surface_win.hlsl
+++ b/ui/surface/accelerated_surface_transformer_win.hlsl
@@ -3,7 +3,7 @@
// found in the LICENSE file.
// @gyp_namespace(ui_surface)
-// Compiles into C++ as 'accelerated_surface_win_hlsl_compiled.h'
+// Compiles into C++ as 'accelerated_surface_transformer_win_hlsl_compiled.h'
struct Vertex {
float4 position : POSITION;
@@ -25,4 +25,4 @@ Vertex vsOneTexture(Vertex input) {
// Samples a texture at the given texture coordinate and returns the result.
float4 psOneTexture(float2 texCoord : TEXCOORD0) : COLOR0 {
return tex2D(s, texCoord);
-};
+};
« no previous file with comments | « ui/surface/accelerated_surface_transformer_win.cc ('k') | ui/surface/accelerated_surface_transformer_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698