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

Side by Side Diff: core/cross/command_buffer/sampler_cb.h

Issue 234002: More work in Command Buffers... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « core/cross/command_buffer/renderer_cb.cc ('k') | core/cross/command_buffer/sampler_cb.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2009, Google Inc. 2 * Copyright 2009, Google Inc.
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 // SamplerCB is an implementation of the Sampler object for command buffers. 47 // SamplerCB is an implementation of the Sampler object for command buffers.
48 class SamplerCB : public Sampler { 48 class SamplerCB : public Sampler {
49 public: 49 public:
50 SamplerCB(ServiceLocator* service_locator, RendererCB* renderer); 50 SamplerCB(ServiceLocator* service_locator, RendererCB* renderer);
51 virtual ~SamplerCB(); 51 virtual ~SamplerCB();
52 52
53 // Sets the d3d texture and sampler states for the given sampler unit. 53 // Sets the d3d texture and sampler states for the given sampler unit.
54 void SetTextureAndStates(); 54 void SetTextureAndStates();
55 55
56 // Gets the resource ID for this sampler. 56 // Gets the resource ID for this sampler.
57 command_buffer::ResourceID resource_id() const { return resource_id_; } 57 command_buffer::ResourceId resource_id() const { return resource_id_; }
58 58
59 private: 59 private:
60 RendererCB* renderer_; 60 RendererCB* renderer_;
61 command_buffer::ResourceID resource_id_; 61 command_buffer::ResourceId resource_id_;
62 DISALLOW_COPY_AND_ASSIGN(SamplerCB); 62 DISALLOW_COPY_AND_ASSIGN(SamplerCB);
63 }; 63 };
64 64
65 } // namespace o3d 65 } // namespace o3d
66 66
67 #endif // O3D_CORE_CROSS_COMMAND_BUFFER_SAMPLER_CB_H_ 67 #endif // O3D_CORE_CROSS_COMMAND_BUFFER_SAMPLER_CB_H_
OLDNEW
« no previous file with comments | « core/cross/command_buffer/renderer_cb.cc ('k') | core/cross/command_buffer/sampler_cb.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698